package payment import "errors" // ErrStripeClientNotConfigured indicates the service was asked to run a Stripe operation without a configured client. var ErrStripeClientNotConfigured = errors.New("stripe client not configured") // ErrNoOutstandingBalance indicates that the booking has already been fully paid. var ErrNoOutstandingBalance = errors.New("booking has no outstanding balance")