8 lines
151 B
Python
8 lines
151 B
Python
import logging
|
|
from pathlib import Path
|
|
|
|
EIVE_TMTC_ROOT = Path(__file__).parent
|
|
PACKAGE_ROOT = EIVE_TMTC_ROOT.parent
|
|
|
|
APP_LOGGER = logging.getLogger()
|