diff options
Diffstat (limited to 'plugin_template.py')
| -rw-r--r-- | plugin_template.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugin_template.py b/plugin_template.py new file mode 100644 index 00000000..be477d37 --- /dev/null +++ b/plugin_template.py @@ -0,0 +1,14 @@ +class Plugin: + name = "Template Plugin" + + author = "SteamDeckHomebrew" + + main_view_html = "<html><body><h3>Template Plugin</h3></body></html>" + + tile_view_html = "" + + async def method_1(**kwargs): + pass + + async def method_2(**kwargs): + pass
\ No newline at end of file |
