practice_code/python/test/Client/__init__.py

16 lines
271 B
Python
Raw Normal View History

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