9 lines
344 B
Python
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]
|