mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 04:10:27 +08:00
16 lines
265 B
Go
16 lines
265 B
Go
package cache
|
|
|
|
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()
|
|
}
|