func()

in store/memory.go [37:44]


func (m *MemoryStore) Get(ctx context.Context, id string) (*types.Product, error) {
	p, ok := m.storage[id]
	if !ok {
		return nil, nil
	}

	return &p, nil
}