6 lines
162 B
Python
6 lines
162 B
Python
from mash.bridges.bridge import Bridge
|
|
|
|
|
|
class Z2mBridge(Bridge):
|
|
def __init__(self, *, id: str) -> None:
|
|
super().__init__(id=id, type="zigbee2mqtt")
|