rscder-pub/keygen.py
2022-05-12 20:39:32 +08:00

9 lines
224 B
Python

from rscder.gui.keygen import LicenseGen
from PyQt5.QtWidgets import QApplication
import sys
if __name__ == "__main__":
app =QApplication(sys.argv)
license = LicenseGen()
license.show()
sys.exit(app.exec_())