12 lines
268 B
Python
12 lines
268 B
Python
|
import logging
|
||
|
import sys
|
||
|
|
||
|
APP_CONFIG_FILENAME = 'config.ini' # Relative to user directory on machine
|
||
|
APP_CONFIGSPEC_FILENAME = 'config.spec' # Relative to module source directory
|
||
|
|
||
|
from .app_container import *
|
||
|
from .cfg import *
|
||
|
from .cli import *
|
||
|
from .log import *
|
||
|
|