15 lines
317 B
Python
15 lines
317 B
Python
|
|
import dynamix_sdk.base as _base
|
||
|
|
from .account import *
|
||
|
|
from .compute import *
|
||
|
|
from .kvmx86 import *
|
||
|
|
from .rg import *
|
||
|
|
from .user import *
|
||
|
|
|
||
|
|
|
||
|
|
class CloudapiAPI(_base.BaseAPI):
|
||
|
|
account: CloudapiAccountAPI
|
||
|
|
compute: CloudapiComputeAPI
|
||
|
|
kvmx86: CloudapiKvmx86API
|
||
|
|
rg: CloudapiRgAPI
|
||
|
|
user: CloudapiUserAPI
|