mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
9 lines
345 B
Go
9 lines
345 B
Go
package booking
|
|
|
|
import "errors"
|
|
|
|
// ErrBookingNotFound indicates that a booking could not be retrieved from the datastore.
|
|
var ErrBookingNotFound = errors.New("booking not found")
|
|
|
|
// ErrInvoiceStorageNotConfigured indicates that invoice storage is unavailable.
|
|
var ErrInvoiceStorageNotConfigured = errors.New("invoice storage not configured")
|