mirror of
https://git.isptech.ru/ISPsystem/isp-maintenance.git
synced 2025-02-01 02:50:51 +01:00
20 lines
308 B
Python
20 lines
308 B
Python
from mgrctl.api.base import BaseAPI, BaseAuthAPI, BaseDnsProxyAPI, BaseIpAPI
|
|
|
|
|
|
class AuthAPI(BaseAuthAPI):
|
|
pass
|
|
|
|
|
|
class DnsProxyAPI(BaseDnsProxyAPI):
|
|
pass
|
|
|
|
|
|
class IpAPI(BaseIpAPI):
|
|
pass
|
|
|
|
|
|
class VmAPI(BaseAPI):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.API_DEFINITION = 'vm'
|