WeChatMsg/app/ImageBox/run.py

10 lines
159 B
Python
Raw Normal View History

2023-01-23 09:47:40 +08:00
from ui import MainDemo
from config import *
if __name__ == '__main__':
app = QApplication(sys.argv)
box = MainDemo()
box.show()
app.exec_()