mirror of
https://git.zavage.net/Zavage-Software/wikicrawl.git
synced 2024-11-22 08:10:26 -07:00
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 *
|
||
|
|