blob: 9bd4dab259d6bddabc0f9ede028a72ee41310ab9 (
plain)
1
2
3
4
5
6
7
8
9
|
class Plugin:
# A normal method. It can be called from JavaScript using call_plugin_function("method_1", argument1, argument2)
async def add(self, left, right):
return left + right
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
async def _main(self):
pass
|