practice_code/python/test/Client/__init__.py
2024-04-17 16:45:36 +08:00

15 lines
217 B
Python

from .Page import *
from .Transmission import *
class start_all:
def __init__(self):
ProcessServer()
Session_server()
app = wx.App()
LoginFrame().Show()
app.MainLoop()