6 lines
159 B
Python
6 lines
159 B
Python
from mash.core.bridge import Bridge
|
|
|
|
|
|
class RestApiBridge(Bridge):
|
|
def __init__(self, *, id: str) -> None:
|
|
super().__init__(id=id, type="restapi")
|