1
0
mirror of https://github.com/LC044/WeChatMsg synced 2025-04-09 14:38:04 +08:00
WeChatMsg/app/ImageBox/run.py
2023-01-23 09:47:40 +08:00

10 lines
159 B
Python

from ui import MainDemo
from config import *
if __name__ == '__main__':
app = QApplication(sys.argv)
box = MainDemo()
box.show()
app.exec_()