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

16 lines
275 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 ExportAction struct {
actionutils.ParentAction
}
func (this *ExportAction) Init() {
2020-10-07 11:18:07 +08:00
this.Nav("", "", "export")
2020-10-06 21:02:37 +08:00
}
func (this *ExportAction) RunGet(params struct{}) {
this.Show()
}