Unlock releases the lock for name.
(key string)
| 260 | |
| 261 | // Unlock releases the lock for name. |
| 262 | func (s *Storage) Unlock(key string) error { |
| 263 | return s.deleteLockFile(s.lockFileName(key)) |
| 264 | } |
| 265 | |
| 266 | func (s *Storage) String() string { |
| 267 | return "storage:" + s.path |
no test coverage detected