mirror of
https://github.com/CyberSecurityUP/shellcode-tester-pro/
synced 2026-06-06 15:34:29 +00:00
10 lines
233 B
Python
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_())
|