Skip to content

Commit

Permalink
move docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tiniscule committed Dec 4, 2023
1 parent dcb3e19 commit a375c17
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {serve} from "https://deno.land/std@0.168.0/http/server.ts";
import {
billingEndpoint,
stripeBillingEndpoint
} from "https://raw.githubusercontent.com/usebasejump/basejump/main/deno-packages/billing-functions/mod.ts";
} from "https://deno.land/x/basejump@v2.0.1/billing-functions/mod.ts";

const stripeResponse = stripeBillingEndpoint({
stripeClient,
Expand All @@ -32,7 +32,7 @@ import {serve} from "https://deno.land/std@0.168.0/http/server.ts";
import {
billingWebhookEndpoint,
stripeBillingWebhookEndpoint
} from "https://raw.githubusercontent.com/usebasejump/basejump/main/deno-packages/billing-functions/mod.ts";
} from "https://deno.land/x/basejump@v2.0.1/billing-functions/mod.ts";

const stripeResponse = stripeBillingWebhookEndpoint({
stripeClient,
Expand All @@ -52,7 +52,7 @@ Convenience function useful for ensuring a user should have access to a specific
import {serve} from "https://deno.land/std@0.168.0/http/server.ts";
import {
requireAccountMember
} from "https://raw.githubusercontent.com/usebasejump/basejump/main/deno-packages/billing-functions/mod.ts";
} from "https://deno.land/x/basejump@v2.0.1/billing-functions/mod.ts";

serve(async (req) => {
if (req.method === "OPTIONS") {
Expand Down

0 comments on commit a375c17

Please sign in to comment.