isp-maintenance/isp_maintenance/api/vm6.py

20 lines
351 B
Python
Raw Normal View History

from api.base import BaseAPI, BaseAuthAPI, BaseDnsProxyAPI, BaseIpAPI
2024-05-26 16:06:58 +02:00
class AuthAPI(BaseAuthAPI):
pass
class DnsProxyAPI(BaseDnsProxyAPI):
pass
class IpAPI(BaseIpAPI):
pass
class VmAPI(BaseAPI):
def __init__(self, api_url=None, verify_ssl=True):
super().__init__(api_url, verify_ssl)
self.API_DEFINITION = 'vm'