Add files via upload

This commit is contained in:
Sirkeira
2025-12-02 13:13:41 -03:00
committed by GitHub
parent 832b32fc4b
commit 73e18c2b67
27 changed files with 1851 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import sys, time
from PyQt5.QtWidgets import QApplication
from src.main_window import MainWindow
from src.pages.splash import SplashScreen
def main():
app = QApplication(sys.argv)
window = MainWindow()
splash = SplashScreen()
splash.start()
window.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()