diff options
| author | Frank <[email protected]> | 2026-01-06 14:22:52 -0500 |
|---|---|---|
| committer | Frank <[email protected]> | 2026-01-06 14:22:54 -0500 |
| commit | 5fc4472921f216318c5fc28d9391f93a7c936955 (patch) | |
| tree | 8fd5d66df461b9a1e701d2ad8357cf4e09ebc83c /infra | |
| parent | 3049ac576afafc53d1df584710a111ccdfa64374 (diff) | |
| download | opencode-5fc4472921f216318c5fc28d9391f93a7c936955.tar.gz opencode-5fc4472921f216318c5fc28d9391f93a7c936955.zip | |
OpenCode Black
Diffstat (limited to 'infra')
| -rw-r--r-- | infra/console.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/infra/console.ts b/infra/console.ts index 626697c2f..578546fc6 100644 --- a/infra/console.ts +++ b/infra/console.ts @@ -97,6 +97,19 @@ export const stripeWebhook = new stripe.WebhookEndpoint("StripeWebhookEndpoint", ], }) +const zenProduct = new stripe.Product("ZenBlack", { + name: "OpenCode Black", +}) +const zenPrice = new stripe.Price("ZenBlackPrice", { + product: zenProduct.id, + unitAmount: 20000, + currency: "usd", + recurring: { + interval: "month", + intervalCount: 1, + }, +}) + const ZEN_MODELS = [ new sst.Secret("ZEN_MODELS1"), new sst.Secret("ZEN_MODELS2"), |
