rearranged a bit
This commit is contained in:
9
conf/apps/globals/hal.py
Normal file
9
conf/apps/globals/hal.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import logging
|
||||
|
||||
logger = logging.getLogger('AppDaemon.Perimeter')
|
||||
|
||||
class HAL:
|
||||
def __init__(self, *args, **kwargs):
|
||||
self.args = args
|
||||
self.kwargs = kwargs
|
||||
logger.info('Logging from HAL')
|
||||
8
conf/apps/globals/utils.py
Normal file
8
conf/apps/globals/utils.py
Normal file
@@ -0,0 +1,8 @@
|
||||
CONSTANTS = {
|
||||
'A': 1,
|
||||
'B': 2,
|
||||
'C': 3
|
||||
}
|
||||
|
||||
def utility_function():
|
||||
return 123, 456
|
||||
Reference in New Issue
Block a user