This commit is contained in:
白茶清欢 2024-10-23 17:27:26 +08:00
parent 82ce67170a
commit 77f0930081

View File

@ -121,7 +121,7 @@ func (f *file) ReadTomlContent(filePath string, result any) error {
if nil == result {
return errors.New("接收读取结果的数据指针为NIL")
}
if _, err := toml.DecodeFile("example.toml", result); err != nil {
if _, err := toml.DecodeFile(filePath, result); err != nil {
return err
}
return nil
@ -147,9 +147,7 @@ func (f *file) ReadAnyFileContent(filePath string, receiver any) error {
switch fileExt {
case consts.FileTypeJson:
parseFunc = f.ReadJSONContent
case consts.FileTypeYml:
fallthrough
case consts.FileTypeYaml:
case consts.FileTypeYml, consts.FileTypeYaml:
parseFunc = f.ReadYmlContent
case consts.FileTypeIni:
parseFunc = f.ReadIniContent