15 lines
251 B
Python
15 lines
251 B
Python
from .Login import *
|
|
from .Session_server import *
|
|
from .Chat_main import *
|
|
|
|
|
|
class start_all:
|
|
def __init__(self):
|
|
|
|
Session_server()
|
|
|
|
app = wx.App(False)
|
|
frame = LoginFrame()
|
|
frame.Show(True)
|
|
app.MainLoop()
|