1 Star 0 Fork 0

享悦/core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
options.go 913 Bytes
一键复制 编辑 原始数据 按行查看 历史
zouqqz 提交于 2024-09-30 02:10 . module update
package memory
import (
"context"
source2 "gitee.com/xiangyue24/core/config/tool/source"
)
type changeSetKey struct{}
func withData(d []byte, f string) source2.Option {
return func(o *source2.Options) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, changeSetKey{}, &source2.ChangeSet{
Data: d,
Format: f,
})
}
}
// WithChangeSet allows a changeset to be set
func WithChangeSet(cs *source2.ChangeSet) source2.Option {
return func(o *source2.Options) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, changeSetKey{}, cs)
}
}
// WithJSON allows the source data to be set to json
func WithJSON(d []byte) source2.Option {
return withData(d, "json")
}
// WithYAML allows the source data to be set to yaml
func WithYAML(d []byte) source2.Option {
return withData(d, "yaml")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiangyue24/core.git
git@gitee.com:xiangyue24/core.git
xiangyue24
core
core
v1.0.2

搜索帮助

0d507c66 1850385 C8b1a773 1850385