OpServ-Monitoring/opserv-backend

View on GitHub
app/server/restful_api/general/endpoint_management.py

Summary

Maintainability
A
0 mins
Test Coverage
from abc import abstractmethod


class EndpointManagement:
    @classmethod
    @abstractmethod
    def get_endpoints(cls):
        return []

    @classmethod
    @abstractmethod
    def get_prefix(cls):
        return ""