wikicrawl/lib/app_skellington/__init__.py

12 lines
268 B
Python
Raw Normal View History

2020-01-24 03:01:45 -07:00
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 *