Files
2026-08-28 10:11:11 -03:00

16 lines
334 B
Python

"""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",
]