Files
Joas A Santos 924ee239ba Update main.py
2025-04-05 00:18:09 -03:00

10 lines
233 B
Python

import sys
from PyQt5.QtWidgets import QApplication
from frontend.splash_screen import SplashScreen
if __name__ == "__main__":
app = QApplication(sys.argv)
splash = SplashScreen()
splash.show()
sys.exit(app.exec_())