13 lines
399 B
Python
13 lines
399 B
Python
from appdaemon.adapi import ADAPI
|
|
|
|
|
|
class Notification:
|
|
def __init__(self, ad: ADAPI) -> None:
|
|
self.ad = ad
|
|
self.log = self.ad.logger.info
|
|
self.log('Notification initialize')
|
|
# self.ad.logger.info(' NOTIFICATION '.center(50, '-'))
|
|
|
|
def send(self, message: str = 'message not specified') -> None:
|
|
self.ad.log(f'NOTIFICATION: {message}', level='DEBUG')
|