fix
This commit is contained in:
parent
82ce67170a
commit
77f0930081
6
file.go
6
file.go
@ -121,7 +121,7 @@ func (f *file) ReadTomlContent(filePath string, result any) error {
|
|||||||
if nil == result {
|
if nil == result {
|
||||||
return errors.New("接收读取结果的数据指针为NIL")
|
return errors.New("接收读取结果的数据指针为NIL")
|
||||||
}
|
}
|
||||||
if _, err := toml.DecodeFile("example.toml", result); err != nil {
|
if _, err := toml.DecodeFile(filePath, result); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
@ -147,9 +147,7 @@ func (f *file) ReadAnyFileContent(filePath string, receiver any) error {
|
|||||||
switch fileExt {
|
switch fileExt {
|
||||||
case consts.FileTypeJson:
|
case consts.FileTypeJson:
|
||||||
parseFunc = f.ReadJSONContent
|
parseFunc = f.ReadJSONContent
|
||||||
case consts.FileTypeYml:
|
case consts.FileTypeYml, consts.FileTypeYaml:
|
||||||
fallthrough
|
|
||||||
case consts.FileTypeYaml:
|
|
||||||
parseFunc = f.ReadYmlContent
|
parseFunc = f.ReadYmlContent
|
||||||
case consts.FileTypeIni:
|
case consts.FileTypeIni:
|
||||||
parseFunc = f.ReadIniContent
|
parseFunc = f.ReadIniContent
|
||||||
|
Loading…
Reference in New Issue
Block a user