10 lines
256 B
Python
10 lines
256 B
Python
from appdaemon.adapi import ADAPI
|
|
|
|
from app1.subdir.foo import Foo
|
|
|
|
class OtherDatabaseApp(Foo):
|
|
def initialize(self):
|
|
super().initialize()
|
|
self.log(f'Initialized from {__file__}')
|
|
# self.log(' CHANGE '.center(50, '-'))
|
|
|