Files
EdgeAdmin/internal/web/actions/default/servers/components/cache/stat.go
2020-10-04 14:27:05 +08:00

16 lines
269 B
Go

package cache
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type StatAction struct {
actionutils.ParentAction
}
func (this *StatAction) Init() {
this.Nav("", "", "stat")
}
func (this *StatAction) RunGet(params struct{}) {
this.Show()
}