2024-04-10 00:28:21 +08:00
|
|
|
from .Login import *
|
2024-04-11 01:34:16 +08:00
|
|
|
from .Session_server import *
|
2024-04-16 00:45:21 +08:00
|
|
|
from .Chat_main 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-16 00:45:21 +08:00
|
|
|
Session_server()
|
2024-04-15 01:26:00 +08:00
|
|
|
|
2024-04-16 00:45:21 +08:00
|
|
|
app = wx.App(False)
|
|
|
|
frame = LoginFrame()
|
|
|
|
frame.Show(True)
|
|
|
|
app.MainLoop()
|