12 lines
234 B
Python
12 lines
234 B
Python
__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 .ui.userInterface import launch_gui as UI
|