2024-04-17 01:01:17 +08:00
|
|
|
from .Page import *
|
2024-04-17 16:45:36 +08:00
|
|
|
from .Transmission 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-17 16:45:36 +08:00
|
|
|
LoginFrame().Show()
|
2024-04-16 00:45:21 +08:00
|
|
|
app.MainLoop()
|
2024-04-17 16:45:36 +08:00
|
|
|
|