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

16 lines
268 B
Go

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