mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-12 03:10:26 +08:00
16 lines
275 B
Go
16 lines
275 B
Go
package waf
|
|
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
type ExportAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *ExportAction) Init() {
|
|
this.Nav("", "", "export")
|
|
}
|
|
|
|
func (this *ExportAction) RunGet(params struct{}) {
|
|
this.Show()
|
|
}
|