Files
EdgeAdmin/internal/web/actions/default/servers/components/cache/clean.go

16 lines
273 B
Go
Raw Normal View History

2020-10-02 17:22:24 +08:00
package cache
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type CleanAction struct {
actionutils.ParentAction
}
func (this *CleanAction) Init() {
2020-10-04 14:27:05 +08:00
this.Nav("", "", "clean")
2020-10-02 17:22:24 +08:00
}
func (this *CleanAction) RunGet(params struct{}) {
this.Show()
}