Files
EdgeAdmin/internal/web/actions/default/servers/server/stat/index.go

17 lines
297 B
Go
Raw Normal View History

2020-08-21 12:32:16 +08:00
package stat
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "stat", "")
2020-08-21 21:09:42 +08:00
this.SecondMenu("index")
2020-08-21 12:32:16 +08:00
}
func (this *IndexAction) RunGet(params struct{}) {
this.Show()
}