Skip to content

Commit 48c8713

Browse files
Merge pull request #39 from Bullish-Design/claude/fix-devman-import-4ycGm
Fix devman CLI import error
2 parents bcca68f + 1e87cea commit 48c8713

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/devman/commands/up.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,8 @@ def _load_nvim_session(config: WorkspaceConfig) -> None:
119119

120120
for command in NVIM.build_session_commands(config.root, session_path):
121121
NVIM.remote_send(config.nvim_listen, command)
122+
123+
124+
def up(root: Path | None = None) -> WorkspaceConfig:
125+
"""Backward-compatible alias for run."""
126+
return run(root=root)

0 commit comments

Comments
 (0)