10 lines
262 B
Python
10 lines
262 B
Python
from app1.database import Database
|
|
from appdaemon.adbase import ADBase
|
|
|
|
|
|
class Test(ADBase):
|
|
def initialize(self):
|
|
self.adapi = self.get_ad_api()
|
|
self.database = Database(self.adapi)
|
|
# self.notify.send("Test message from Test2 app.")
|