func()

in service/store/store.go [11:18]


func (ms MemoryStore) Get(key string) ([]byte, error) {
	got, ok := ms[key]
	if !ok {
		return nil, errors.New("not found")
	}

	return got, nil
}