From e0cf1ef48cc74e898aabf31dad44106cf96146b7 Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Sat, 9 Jul 2022 14:32:53 -0700 Subject: [PATCH] Move Stripe import because I forgot to do it before --- functions/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/src/index.ts b/functions/src/index.ts index e621ed61..380e4f93 100644 --- a/functions/src/index.ts +++ b/functions/src/index.ts @@ -3,7 +3,6 @@ import * as admin from 'firebase-admin' admin.initializeApp() // v1 -export * from './stripe' export * from './create-user' export * from './on-create-bet' export * from './on-create-comment-on-contract' @@ -41,3 +40,4 @@ export * from './create-group' export * from './resolve-market' export * from './get-daily-bonuses' export * from './unsubscribe' +export * from './stripe'