mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-14 20:06:34 +08:00
16 lines
281 B
Go
16 lines
281 B
Go
package cache
|
|
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
type PreheatAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *PreheatAction) Init() {
|
|
this.Nav("", "", "preheat")
|
|
}
|
|
|
|
func (this *PreheatAction) RunGet(params struct{}) {
|
|
this.Show()
|
|
}
|