1 Star 4 Fork 3

tym_hmm/go-helper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
YamlRead.go 767 Bytes
一键复制 编辑 原始数据 按行查看 历史
天蝎儿 提交于 2022-03-03 15:54 . 增加yaml生成
package YamlHelper
import (
"fmt"
"gopkg.in/yaml.v2"
"io/ioutil"
)
type yamlRead struct {
path string
}
func NewYamlRead() *yamlRead {
return &yamlRead{}
}
func (y *yamlRead) Parse(path string, out interface{}) error {
y.path = path
return y.read(out)
}
func (y *yamlRead) read(out interface{}) error {
path := fmt.Sprintf("%s", y.path)
b, err := ioutil.ReadFile(path)
if err != nil {
return err
}
err = yaml.Unmarshal(b, out)
return nil
}
type yamlWrite struct{}
func NewYamlWrite() *yamlWrite {
return &yamlWrite{}
}
func (y *yamlWrite) Out(out interface{}, fileName string) error {
data, err := yaml.Marshal(out)
if err != nil {
return err
}
err = ioutil.WriteFile(fileName, data, 0777)
if err != nil {
return err
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tym_hmm/go-helper.git
git@gitee.com:tym_hmm/go-helper.git
tym_hmm
go-helper
go-helper
v1.1.47

搜索帮助