2024-04-17 01:01:17 +08:00
|
|
|
from .Page import *
|
|
|
|
from .Socket_session import *
|
|
|
|
from .Process_session import *
|
2024-04-11 01:34:16 +08:00
|
|
|
|
|
|
|
|
2024-04-16 00:45:21 +08:00
|
|
|
class start_all:
|
2024-04-12 00:56:58 +08:00
|
|
|
def __init__(self):
|
2024-04-15 01:26:00 +08:00
|
|
|
|
2024-04-17 01:01:17 +08:00
|
|
|
ProcessServer()
|
2024-04-16 00:45:21 +08:00
|
|
|
Session_server()
|
2024-04-15 01:26:00 +08:00
|
|
|
|
2024-04-17 01:01:17 +08:00
|
|
|
app = wx.App()
|
2024-04-16 00:45:21 +08:00
|
|
|
frame = LoginFrame()
|
2024-04-17 01:01:17 +08:00
|
|
|
frame.Show()
|
2024-04-16 00:45:21 +08:00
|
|
|
app.MainLoop()
|