added simple_app

This commit is contained in:
John Lancaster
2024-08-13 00:16:34 -05:00
parent 2484668b26
commit c10d280dcb
2 changed files with 10 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
hello_world:
module: hello
class: HelloWorld
simple_app:
module: simple
class: SimpleApp

View File

@@ -0,0 +1,6 @@
from appdaemon.adapi import ADAPI
class SimpleApp(ADAPI):
def initialize(self):
self.log(f"{self.__class__.__name__} Initialized")