实现数据看板--用户

This commit is contained in:
GoEdgeLab
2021-07-11 18:05:49 +08:00
parent ae96474efa
commit 5b29587864
27 changed files with 1118 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package boards
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type DnsAction struct {
actionutils.ParentAction
}
func (this *DnsAction) Init() {
this.Nav("", "", "dns")
}
func (this *DnsAction) RunGet(params struct{}) {
this.Show()
}