(name string)
| 296 | } |
| 297 | |
| 298 | func (s *FileStorage) lockFilename(name string) string { |
| 299 | return filepath.Join(s.lockDir(), StorageKeys.Safe(name)+".lock") |
| 300 | } |
| 301 | |
| 302 | func (s *FileStorage) lockDir() string { |
| 303 | return filepath.Join(s.Path, "locks") |
no test coverage detected