16 lines
298 B
Go
16 lines
298 B
Go
package ech
|
|
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
type AuditAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *AuditAction) Init() {
|
|
this.Nav("httpdns", "ech", "")
|
|
}
|
|
|
|
func (this *AuditAction) RunGet(params struct{}) {
|
|
this.RedirectURL("/httpdns/apps")
|
|
}
|