This commit is contained in:
Daniel Haus 2026-01-23 09:41:20 +03:00
commit 95c854f215
9 changed files with 287 additions and 0 deletions

12
main.py Normal file
View file

@ -0,0 +1,12 @@
import sys
from composer import Composer
from PyQt6.QtWidgets import QApplication
def main():
app = QApplication(sys.argv)
composer = Composer(app)
composer.run()
if __name__ == "__main__":
main()