9 lines
184 B
Go
9 lines
184 B
Go
package inventory
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInvalidBook = errors.New("book not supported in library")
|
|
ErrUnavailableBook = errors.New("book is not available at this library")
|
|
)
|