7 lines
189 B
Python
7 lines
189 B
Python
from trigger import Trigger
|
|
from config import Config
|
|
|
|
class RoonTrigger(Trigger):
|
|
def __init__(self, name: str, config: Config) -> None:
|
|
super().__init__(name, config)
|
|
|