mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-15 18:13:40 +03:00
19 lines
500 B
Python
19 lines
500 B
Python
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
|