mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-08 07:50:28 +08:00
16 lines
263 B
Go
16 lines
263 B
Go
|
|
package waf
|
||
|
|
|
||
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||
|
|
|
||
|
|
type TestAction struct {
|
||
|
|
actionutils.ParentAction
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *TestAction) Init() {
|
||
|
|
this.Nav("", "", "")
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *TestAction) RunGet(params struct{}) {
|
||
|
|
this.Show()
|
||
|
|
}
|