Add test_plugin/example_plugin.py

This commit is contained in:
2024-12-06 18:30:03 +01:00
parent 12fb4e3005
commit ea45973df2
+6
View File
@@ -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!"