practice_code/python/test/test_plan.py

10 lines
157 B
Python
Raw Normal View History

import wx
from Client.Chat_main import ChatFrame
if __name__ == '__main__':
app = wx.App()
frame = ChatFrame()
frame.Show()
app.MainLoop()