mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 22:13:44 +03:00
11 lines
205 B
Go
11 lines
205 B
Go
package model
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrProductNotFound = errors.New("invalid sku")
|
|
|
|
ErrCartNotFound = errors.New("cart not found")
|
|
ErrItemNotFoundInCart = errors.New("item not found in cart")
|
|
)
|