()
| 18 | } |
| 19 | |
| 20 | func NewInMemoryModelStore() *InMemoryModelStore { |
| 21 | return &InMemoryModelStore{models: make(map[string]*Model)} |
| 22 | } |
| 23 | |
| 24 | func (s *InMemoryModelStore) Get(id string) (*Model, bool) { |
| 25 | s.mu.RLock() |
no outgoing calls
no test coverage detected