initial commit

This commit is contained in:
John Lancaster
2024-08-10 13:43:05 -05:00
commit 3b750449eb
9 changed files with 132 additions and 0 deletions

5
conf/apps/hello.py Normal file
View File

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