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

16 lines
273 B
Go
Raw Normal View History

2020-07-22 22:19:39 +08:00
package nodes
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "", "index")
}
func (this *IndexAction) RunGet(params struct{}) {
this.Show()
}