(fileName string)
| 565 | } |
| 566 | |
| 567 | func ReadWaveHomeConfigFile(fileName string) (waveobj.MetaMapType, []ConfigError) { |
| 568 | configDirAbsPath := wavebase.GetWaveConfigDir() |
| 569 | configDirFsys := os.DirFS(configDirAbsPath) |
| 570 | return readConfigFileFS(configDirFsys, "", fileName) |
| 571 | } |
| 572 | |
| 573 | func WriteWaveHomeConfigFile(fileName string, m waveobj.MetaMapType) error { |
| 574 | configWriteLock.Lock() |
no test coverage detected