Files
bookish/bookish-server/inventory/errors.go
T

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")
)