Files
EdgeAdmin/internal/web/actions/default/servers/components/waf/test.go
2020-10-07 11:18:07 +08:00

16 lines
267 B
Go

package waf
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type TestAction struct {
actionutils.ParentAction
}
func (this *TestAction) Init() {
this.Nav("", "", "test")
}
func (this *TestAction) RunGet(params struct{}) {
this.Show()
}