chore(backend): refactor mono cli file into package

This commit is contained in:
2025-08-27 16:11:19 -04:00
parent a7b596e573
commit 602a338027
11 changed files with 507 additions and 331 deletions

8
backend/cli/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
"""
NimbusFlow CLI module.
"""
from .base import NimbusFlowCLI, CLIError
from .main import main
__all__ = ["NimbusFlowCLI", "CLIError", "main"]