isp-maintenance/mgrctl/api/vm6.py

20 lines
308 B
Python
Raw Permalink Normal View History

from mgrctl.api.base import BaseAPI, BaseAuthAPI, BaseDnsProxyAPI, BaseIpAPI
2024-05-26 22:06:58 +08:00
class AuthAPI(BaseAuthAPI):
pass
class DnsProxyAPI(BaseDnsProxyAPI):
pass
class IpAPI(BaseIpAPI):
pass
class VmAPI(BaseAPI):
def __init__(self):
super().__init__()
2024-05-26 22:06:58 +08:00
self.API_DEFINITION = 'vm'