4 Star 5 Fork 5

Plato/Service-Box-go

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
options.go 989 Bytes
一键复制 编辑 原始数据 按行查看 历史
package service_infra
type (
// Options zookeeper模块配置
Options struct {
//Prefix 路径前缀,支持多层级的路径
Prefix string `yaml:"prefix"`
//Auth 鉴权接口,预留
Auth string
//Hosts 发现用地址
Hosts []string `yaml:"hosts"`
}
Option func(*Options)
)
func WithHosts(hosts []string) Option {
return func(o *Options) {
o.Hosts = hosts
}
}
func WithAppendHost(host string) Option {
return func(o *Options) {
//合法性检查,去重
for _, h := range o.Hosts {
if h == host {
return
}
}
o.Hosts = append(o.Hosts, host)
}
}
func WithPrefix(prefix string) Option {
return func(o *Options) {
o.Prefix = prefix
}
}
func (o *Options) PreProcess() {
if len(o.Prefix) == 0 {
o.Prefix = "/"
return
}
if o.Prefix == "/" {
return
}
// 以/开头
if o.Prefix[0] != '/' {
o.Prefix = "/" + o.Prefix
}
//移除以/ 结尾
if o.Prefix[len(o.Prefix)-1] == '/' {
o.Prefix = o.Prefix[:len(o.Prefix)-1]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dennis-kk/service-box-go.git
git@gitee.com:dennis-kk/service-box-go.git
dennis-kk
service-box-go
Service-Box-go
v0.5.25

搜索帮助