mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-15 22:41:20 +08:00
10 lines
159 B
Python
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_()
|