1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-10-15 22:50:29 +02:00
ntfy/payments/payments_dummy.go
2025-08-07 17:24:57 +02:00

18 lines
433 B
Go

//go:build nopayments
package payments
// Available is a constant used to indicate that Stripe support is available.
// It can be disabled with the 'nopayments' build tag.
const Available = false
// SubscriptionStatus is a dummy type
type SubscriptionStatus string
// PriceRecurringInterval is dummy type
type PriceRecurringInterval string
// Setup is a dummy type
func Setup(stripeSecretKey string) {
// Nothing to see here
}