6 lines
140 B
Python
6 lines
140 B
Python
from appdaemon.adapi import ADAPI
|
|
|
|
class Child(ADAPI):
|
|
def initialize(self):
|
|
self.log(f"{self.__class__.__name__} Initialized")
|