Files
EdgeAdmin/internal/web/actions/default/servers/components/cache/preheat.go
2020-10-02 17:22:24 +08:00

16 lines
274 B
Go

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