2025-07-31 19:49:25 +02:00

33 lines
638 B
Python

"""
Module:
Author: Marcel König
Description:
"""
hallo marcel
import sys
from PySide6.QtWidgets import QApplication
from .di_container import ApplicationContainer
from .gui.main_view import MainView
def main():
container = ApplicationContainer()
# container.config.from_dict(
# {
# "business": {
# "setting1": "value1",
# "setting2": "value"
# }
# }
# )
app = QApplication(sys.argv)
window = MainView(data_provider=container.dataProvider())
window.show()
sys.exit(app.exec())
if __name__ == "__main__":
main()