Files
EdgeAdmin/internal/web/actions/default/servers/components/waf/import.go
2020-10-06 21:02:37 +08:00

16 lines
269 B
Go

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