Files
CyberSecurityUP-shellcode-t…/main.py
T
Joas A Santos 846e004b80 Create main.py
2025-04-04 23:53:02 -03:00

10 lines
224 B
Python

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