mirror of
https://gitea.com/Lerking/XtendR.git
synced 2026-06-25 11:10:04 +02:00
6 lines
237 B
Python
6 lines
237 B
Python
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!" |