2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 07:57:21 +08:00

fix: 环境卸载

This commit is contained in:
2026-01-18 06:12:31 +08:00
parent 0e2e157001
commit 7442597a3c

View File

@@ -315,8 +315,8 @@ func (route *Http) Register(r *chi.Mux) {
r.Get("/types", route.environment.Types)
r.Get("/list", route.environment.List)
r.Post("/install", route.environment.Install)
r.Get("/uninstall", route.environment.Uninstall)
r.Put("/update", route.environment.Update)
r.Post("/uninstall", route.environment.Uninstall)
r.Post("/update", route.environment.Update)
r.Get("/is_installed", route.environment.IsInstalled)
r.Route("/go", func(r chi.Router) {
r.Post("/{slug}/set_cli", route.environmentGo.SetCli)