mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-06 20:15:50 +08:00
14 lines
331 B
Go
14 lines
331 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package dnsconfigs
|
|
|
|
func DefaultNSUserConfig() *NSUserConfig {
|
|
return &NSUserConfig{
|
|
DefaultClusterId: 0,
|
|
}
|
|
}
|
|
|
|
type NSUserConfig struct {
|
|
DefaultClusterId int64 `json:"defaultClusterId"` // 默认部署到的集群
|
|
}
|