This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAdmin/internal/web/actions/default/servers/components/waf/import.go
T
2020-10-07 11:18:07 +08:00

16 lines
275 B
Go

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