QOR Admin should be able to integrate with most golang web frameworks (let me know if there are any web framework not supported), here are some examples of how to integrate with them.
mux := http.NewServeMux()
Admin.MountTo("/admin", mux)
http.ListenAndServe(":9000", mux)
mux := http.NewServeMux()
Admin.MountTo("/admin", mux)
beego.Handler("/admin/*", mux)
beego.Run()
mux := http.NewServeMux()
Admin.MountTo("/admin", mux)
r := gin.Default()
r.Any("/admin/*resources", gin.WrapH(mux))
r.Run()
adminMux := http.NewServeMux()
Admin.MountTo("/admin", adminMux)
r := mux.NewRouter()
r.PathPrefix("/admin").Handler(adminMux)
http.Handle("/", r)