From ea45973df2e82af957af93825161f480effede4c Mon Sep 17 00:00:00 2001 From: Lerking Date: Fri, 6 Dec 2024 18:30:03 +0100 Subject: [PATCH] Add test_plugin/example_plugin.py --- test_plugin/example_plugin.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test_plugin/example_plugin.py diff --git a/test_plugin/example_plugin.py b/test_plugin/example_plugin.py new file mode 100644 index 0000000..352f00e --- /dev/null +++ b/test_plugin/example_plugin.py @@ -0,0 +1,6 @@ +from plugin_system import PluginInterface + +class ExamplePlugin(PluginInterface): + def execute(self, *args, **kwargs): + print("ExamplePlugin executed with args:", args, "and kwargs:", kwargs) + return "Execution complete!" \ No newline at end of file