mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-10-15 22:50:29 +02:00
18 lines
433 B
Go
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
|
|
}
|