ayon-core/openpype/modules/default_modules/webserver/interfaces.py
2021-07-28 14:07:48 +02:00

9 lines
272 B
Python

from abc import abstractmethod
from openpype.modules import OpenPypeInterface
class IWebServerRoutes(OpenPypeInterface):
"""Other modules interface to register their routes."""
@abstractmethod
def webserver_initialization(self, server_manager):
pass