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