mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 00:37:49 +00:00
First draft of backend independent plugins
This commit is contained in:
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user