18 lines
321 B
Go
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")
|
|
}
|