mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
9 lines
272 B
Python
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
|