diff --git a/src/pyDataService/config.py b/src/pyDataService/config.py index b3b029f..4d0866d 100644 --- a/src/pyDataService/config.py +++ b/src/pyDataService/config.py @@ -1,10 +1,7 @@ -from pathlib import Path from typing import Literal from confz import ConfZ, ConfZEnvSource -CONFIG_DIR = Path(__file__).parent.parent.parent.resolve() / "config" - class OperationMode(ConfZ): # type: ignore environment: Literal["development"] | Literal["production"] = "production"