Skip to content
Snippets Groups Projects
__init__.py 754 B
Newer Older
Seblu's avatar
Seblu committed
#!/usr/bin/env python
#coding=utf8

'''
CloudControl CLI Commands Package
'''

# bunch of command
from cccli.command.account import *
from cccli.command.alias import *
Seblu's avatar
Seblu committed
from cccli.command.right import *
from cccli.command.shell import *
Seblu's avatar
Seblu committed
from cccli.command.tag import *
from cccli.command.vm import *

# by command module
Seblu's avatar
Seblu committed
from cccli.command.cancel import Command_cancel
from cccli.command.execute import Command_execute
Seblu's avatar
Seblu committed
from cccli.command.expert import Command_expert
Seblu's avatar
Seblu committed
from cccli.command.jobs import Command_jobs
from cccli.command.kill import Command_kill
from cccli.command.list import Command_list
from cccli.command.server import Command_server
from cccli.command.shutdown import Command_shutdown
Seblu's avatar
Seblu committed
from cccli.command.tagdisplay import Command_tagdisplay