This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAdmin/internal/web/actions/default/log/index.go
T
2020-09-13 20:37:07 +08:00

16 lines
272 B
Go

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