8 lines
180 B
Python
8 lines
180 B
Python
from appdaemon.adapi import ADAPI
|
|
|
|
from food import Eggs
|
|
|
|
class Restaurant(ADAPI):
|
|
def initialize(self):
|
|
self.log(f'{self.__class__.__name__} initialized with {Eggs}')
|