feat: rename config path var and add dedicated folder for logs

This commit is contained in:
Benexl
2025-07-27 11:48:18 +03:00
parent 19426019a2
commit fd74fbe2ef
4 changed files with 15 additions and 12 deletions

View File

@@ -6,7 +6,7 @@ import click
from pydantic import ValidationError
from ...core.config import AppConfig
from ...core.constants import USER_CONFIG_PATH
from ...core.constants import USER_CONFIG
from ...core.exceptions import ConfigError
@@ -19,7 +19,7 @@ class ConfigLoader:
AppConfig object.
"""
def __init__(self, config_path: Path = USER_CONFIG_PATH):
def __init__(self, config_path: Path = USER_CONFIG):
"""
Initializes the loader with the path to the configuration file.