Files
EdgeAdmin/internal/web/actions/default/servers/components/waf/sets.go

16 lines
263 B
Go
Raw Normal View History

2020-10-06 21:02:37 +08:00
package waf
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type SetsAction struct {
actionutils.ParentAction
}
func (this *SetsAction) Init() {
this.Nav("", "", "")
}
func (this *SetsAction) RunGet(params struct{}) {
this.Show()
}