9 lines
208 B
Python
Executable File
9 lines
208 B
Python
Executable File
from pathlib import Path
|
|
|
|
from appdaemon.adapi import ADAPI
|
|
|
|
|
|
class HelloWorld(ADAPI):
|
|
def initialize(self):
|
|
self.log(f'Initialized app from {Path(__file__).relative_to(self.AD.app_dir.parent)}')
|