2026-04-18 14:22:54 +08:00
|
|
|
package setting
|
|
|
|
|
|
2026-05-22 11:00:58 +08:00
|
|
|
// Waffo Pancake hosted checkout configuration. Gateway is enabled once
|
|
|
|
|
// MerchantID + PrivateKey + ProductID are populated (no separate Enabled
|
|
|
|
|
// flag, matching Stripe / Creem). StoreID + ProductID are operator-bound
|
|
|
|
|
// via SaveWaffoPancakeConfig.
|
2026-04-18 14:22:54 +08:00
|
|
|
var (
|
2026-05-22 11:00:58 +08:00
|
|
|
WaffoPancakeMerchantID string
|
|
|
|
|
WaffoPancakePrivateKey string
|
|
|
|
|
WaffoPancakeReturnURL string
|
|
|
|
|
WaffoPancakeUnitPrice float64 = 1.0
|
|
|
|
|
WaffoPancakeMinTopUp int = 1
|
|
|
|
|
WaffoPancakeStoreID string
|
|
|
|
|
WaffoPancakeProductID string
|
2026-04-18 14:22:54 +08:00
|
|
|
)
|