Initial
This commit is contained in:
commit
95c854f215
9 changed files with 287 additions and 0 deletions
12
main.py
Normal file
12
main.py
Normal 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue