mirror of
https://gitea.com/Lerking/XtendR.git
synced 2026-06-25 19:20:06 +02:00
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