Files
waf-platform/EdgeAdmin/internal/web/actions/default/httpdns/index.go
2026-02-24 11:33:44 +08:00

12 lines
237 B
Go

package httpdns
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) RunGet(params struct{}) {
this.RedirectURL("/httpdns/clusters")
}