summaryrefslogtreecommitdiff
path: root/backend/plugin/passive_plugin.py
blob: a8c5add3ea3a776dd8e7981981d1406f2f79d89c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class PassivePlugin:
    def __init__(self, logger) -> None:
        self.logger
        pass

    def call_method(self, method_name, args):
        self.logger.debug(f"Tried to call method {method_name}, but plugin is in passive mode")
        pass

    def execute_method(self, method_name, method_args):
        self.logger.debug(f"Tried to execute method {method_name}, but plugin is in passive mode")
        pass

    async def start(self):
        pass

    async def stop(self):
        pass