func main() { http.StartHttp(http.NewRouteHandle()) }
func StartHttp() { clientRouteHandle := &model.RouteHandles{Handles: []model.RouteHandle{&RouteRoot{}, &RouteLogin{}, &RouteLogout{}, &shttp.RouteNotFound{}, &shttp.RouteServerSetup{}, &RouteServer{}, &shttp.RouteUser{}}} shttp.StartHttp(clientRouteHandle) }