实现域名服务器集群管理

This commit is contained in:
GoEdgeLab
2021-05-25 15:47:40 +08:00
parent f69d49d92b
commit 35e93baebf
31 changed files with 581 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
// 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()
}