blob: 9b7907bb80a38cc7934528a0d03275a7f4ba6a20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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# Empty stub
|