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

16 lines
273 B
Go

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