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 {
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user