added dependency

This commit is contained in:
John Lancaster
2024-06-06 23:21:19 -05:00
parent caea4ac448
commit 423465a111
4 changed files with 11 additions and 4 deletions

View File

@@ -5,5 +5,5 @@ from appdaemon.adbase import ADBase
class Test(ADBase):
def initialize(self):
self.adapi = self.get_ad_api()
self.notification = Notification(self.adapi)
# self.notify.send("Test message from Test2 app.")
self.notify = Notification(self.adapi)
self.notify.send("Test message from Test2 app.")

View File

@@ -1,4 +1,5 @@
test:
module: test
class: Test
log_level: DEBUG
log_level: DEBUG
dependencies: companion_app