15 lines
217 B
Python
15 lines
217 B
Python
from .Page import *
|
|
from .Transmission import *
|
|
|
|
|
|
class start_all:
|
|
def __init__(self):
|
|
|
|
ProcessServer()
|
|
Session_server()
|
|
|
|
app = wx.App()
|
|
LoginFrame().Show()
|
|
app.MainLoop()
|
|
|