feat: create config class to replace use of config file in application

This commit is contained in:
WorldTeacher
2024-10-29 16:07:30 +01:00
parent 2137799f9b
commit f3eed7486d
13 changed files with 224 additions and 111 deletions

View File

@@ -1,7 +1,11 @@
__version__ = "1.0.0"
__author__ = "Alexander Kirchner"
from config import Config
settings = Config("config/config.yaml")
from .utils.icon import Icon
from .logic.log import MyLogger
from .utils.icon import Icon
from .ui.userInterface import launch_gui as UI