summaryrefslogtreecommitdiff
path: root/plugin_template.py
blob: 43088b14716d5b0c899358ccc94dd7d72a70296e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Plugin:
    name = "Template Plugin"

    author = "SteamDeckHomebrew"

    main_view_html = "<html><body><h3>Template Plugin</h3></body></html>"

    tile_view_html = ""

    hot_reload = False

    async def __main(self):
        pass

    async def method_1(self, **kwargs):
        pass

    async def method_2(self, **kwargs):
        pass