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

18 lines
321 B
Go

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