// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. package recovers 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() }