Files
ad-prod/apps/hello.py
John Lancaster 8df03a0200 initial commit
2025-11-14 21:19:38 -06:00

8 lines
179 B
Python
Executable File

from appdaemon.adapi import ADAPI
class HelloWorld(ADAPI):
def initialize(self):
self.log("Hello from AppDaemon")
self.log("You are now ready to run Apps!")