sp-hydra-veil-cli/cli/commands/__init__.py
2026-05-30 08:25:00 -05:00

9 lines
344 B
Python

from cli.commands import profile
from cli.commands import application
from cli.commands import policy
from cli.commands import get_set
from cli.commands import sync_update
import importlib
operator_command = importlib.import_module('cli.commands.operator')
all_commands = [profile, application, operator_command, policy, get_set, sync_update]