practice_code/python/test/Client/__init__.py

15 lines
251 B
Python
Raw Normal View History

2024-04-10 00:28:21 +08:00
from .Login import *
from .Session_server import *
from .Chat_main import *
class start_all:
def __init__(self):
Session_server()
app = wx.App(False)
frame = LoginFrame()
frame.Show(True)
app.MainLoop()