(keypath backend.KeyPath)
| 308 | } |
| 309 | |
| 310 | func (rw *Backend) rootPath(keypath backend.KeyPath) string { |
| 311 | return filepath.Join(rw.cfg.Path, filepath.Join(keypath...)) |
| 312 | } |
| 313 | |
| 314 | func readError(err error) error { |
| 315 | if os.IsNotExist(err) { |
no test coverage detected