This commit is contained in:
oliver
2026-08-28 10:11:11 -03:00
parent f533ff8e36
commit 585951c8ce
1380 changed files with 1540268 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
"""CLI commands for Odoo Directory."""
from .setup import setup_command
from .plan import plan_command
from .execute import execute_command
from .export import export_command
from .deploy import deploy_command
__all__ = [
"setup_command",
"plan_command",
"execute_command",
"export_command",
"deploy_command",
]