2026-06-17 01:25:51 -05:00
|
|
|
import * as functions from 'firebase-functions'
|
|
|
|
|
|
|
|
|
|
export { revenueCatWebhook } from './billing/revenueCatWebhook'
|
|
|
|
|
export { syncEntitlement } from './billing/syncEntitlement'
|
2026-06-17 01:30:04 -05:00
|
|
|
export {
|
|
|
|
|
sendDailyQuestionReminder,
|
|
|
|
|
sendPartnerAnsweredNotification,
|
|
|
|
|
} from './notifications/reminders'
|
2026-06-17 01:25:51 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Basic health check callable.
|
|
|
|
|
* Useful for verifying function deployment and firebase-tools wiring.
|
|
|
|
|
*/
|
|
|
|
|
export const health = functions.https.onRequest((req, res) => {
|
|
|
|
|
res.status(200).json({ status: 'ok' })
|
|
|
|
|
})
|