Files
waf-platform/EdgeAdmin/internal/web/actions/default/httpdns/policies/index.go
2026-02-27 10:35:22 +08:00

20 lines
381 B
Go

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