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