added simple_app
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
hello_world:
|
hello_world:
|
||||||
module: hello
|
module: hello
|
||||||
class: HelloWorld
|
class: HelloWorld
|
||||||
|
|
||||||
|
simple_app:
|
||||||
|
module: simple
|
||||||
|
class: SimpleApp
|
||||||
|
|||||||
6
conf/apps/simple_app/simple.py
Normal file
6
conf/apps/simple_app/simple.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
from appdaemon.adapi import ADAPI
|
||||||
|
|
||||||
|
|
||||||
|
class SimpleApp(ADAPI):
|
||||||
|
def initialize(self):
|
||||||
|
self.log(f"{self.__class__.__name__} Initialized")
|
||||||
Reference in New Issue
Block a user