Files
EdgeAdmin/internal/web/actions/default/ns/clusters/cluster/index.go

18 lines
348 B
Go
Raw Normal View History

2021-05-25 15:47:40 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package cluster
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "node", "")
}
func (this *IndexAction) RunGet(params struct{}) {
this.Show()
}