mirror of
https://github.com/binwiederhier/ntfy.git
synced 2026-05-15 07:35:49 -06:00
16 lines
328 B
Go
16 lines
328 B
Go
//go:build !nopayments
|
|
|
|
package payments
|
|
|
|
import "github.com/stripe/stripe-go/v74"
|
|
|
|
const Available = true
|
|
|
|
type SubscriptionStatus stripe.SubscriptionStatus
|
|
|
|
type PriceRecurringInterval stripe.PriceRecurringInterval
|
|
|
|
func Setup(stripeSecretKey string) {
|
|
stripe.EnableTelemetry = false // Whoa!
|
|
stripe.Key = stripeSecretKey
|
|
}
|