| 1542 | } |
| 1543 | |
| 1544 | type lfsStorage struct { |
| 1545 | objects map[string]map[string][]byte |
| 1546 | incomplete map[string]map[string][]byte |
| 1547 | mutex *sync.Mutex |
| 1548 | } |
| 1549 | |
| 1550 | func (s *lfsStorage) Get(repo, oid string) ([]byte, bool) { |
| 1551 | s.mutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected