var (
// ErrAlreadyExist is the error returned when data added in the store// already exists.
ErrAlreadyExist = errors.New("already exists")
// ErrNotExist is the error returned when data is not in the store. ErrNotExist = errors.New("does not exist")
)