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

16 lines
271 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", "")
}
func (this *IndexAction) RunGet(params struct{}) {
this.Show()
}