cli: add ioc commands
Deploy and restart modified services / deploy (push) Successful in 18s

This commit is contained in:
Benjamin Labrecque
2026-07-15 08:25:03 +02:00
parent 44335bf30d
commit 2e8b5b6f51
14 changed files with 240 additions and 12 deletions
+2
View File
@@ -2,6 +2,7 @@ import logging
import typer
import ioc
import service
logger = logging.getLogger(__name__)
@@ -9,6 +10,7 @@ logger = logging.getLogger(__name__)
cli = typer.Typer(no_args_is_help=True, add_completion=False)
cli.add_typer(service.service, name="service")
cli.add_typer(ioc.ioc, name="ioc")
if __name__ == "__main__":