Add test_plugin/example_plugin.py
This commit is contained in:
@@ -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!"
|
||||||
Reference in New Issue
Block a user