rentease/internal/service/booking/errors.go
Ruidy 9b2510460a
Some checks are pending
CI / checks (push) Waiting to run
feat: store invoice PDFs in minio
2026-03-20 23:58:57 +01:00

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