mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-17 06:00:25 +08:00
16 lines
273 B
Go
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()
|
|
}
|