diff options
Diffstat (limited to 'plugin_template.py')
| -rw-r--r-- | plugin_template.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/plugin_template.py b/plugin_template.py index be477d37..43088b14 100644 --- a/plugin_template.py +++ b/plugin_template.py @@ -7,8 +7,13 @@ class Plugin: tile_view_html = "" - async def method_1(**kwargs): + hot_reload = False + + async def __main(self): + pass + + async def method_1(self, **kwargs): pass - async def method_2(**kwargs): + async def method_2(self, **kwargs): pass
\ No newline at end of file |
