practice_code/python/test/Client/__init__.py

17 lines
244 B
Python
Raw Normal View History

from .Page import *
2024-04-17 16:45:36 +08:00
from .Transmission import *
class start_all:
def __init__(self):
ProcessServer()
2024-04-19 00:48:24 +08:00
Session_server()
2024-04-19 00:48:24 +08:00
FileOperate(None)
app = wx.App()
2024-04-17 16:45:36 +08:00
LoginFrame().Show()
app.MainLoop()
2024-04-17 16:45:36 +08:00