Files
EdgeAdmin/internal/web/actions/default/recover/index.go

18 lines
345 B
Go
Raw Normal View History

2021-07-20 17:15:17 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
2023-08-08 18:32:58 +08:00
package recovers
2021-07-20 17:15:17 +08:00
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "", "")
}
func (this *IndexAction) RunGet(params struct{}) {
this.Show()
}