mirror of
https://github.com/foomo/shop.git
synced 2026-05-31 16:10:08 +00:00
11 lines
190 B
Go
11 lines
190 B
Go
package customer
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/foomo/shop/shop_error"
|
|
)
|
|
|
|
// ErrCustomerNotFound if customer not found
|
|
var ErrCustomerNotFound = errors.New(shop_error.ErrorNotInDatabase)
|