app definition organization

This commit is contained in:
John Lancaster
2024-07-07 23:39:02 -05:00
parent 4abd6ce5d5
commit 87ed3c81ae
7 changed files with 16 additions and 16 deletions

View File

@@ -2,8 +2,11 @@ from pathlib import Path
from appdaemon.adapi import ADAPI
from ..notification import Notification
class Foo(ADAPI):
def initialize(self):
self.log(f'Initialized app from {Path(__file__).relative_to(self.AD.app_dir.parent)}')
self.notification = Notification(self.AD)
# self.log(' FOO '.center(50, '-'))