mash-server/src/mash/bridges/restapi/restapi_bridge.py

7 lines
159 B
Python
Raw Normal View History

2024-08-07 03:26:47 +02:00
from mash.core.bridge import Bridge
class RestApiBridge(Bridge):
def __init__(self, *, id: str) -> None:
super().__init__(id=id, type="restapi")