mirror of
https://gitcode.com/gh_mirrors/re/react-native-pushy.git
synced 2025-10-07 20:55:14 +08:00
13 lines
499 B
TypeScript
13 lines
499 B
TypeScript
import * as functions from 'firebase-functions';
|
|
|
|
// // Start writing Firebase Functions
|
|
// // https://firebase.google.com/docs/functions/typescript
|
|
//
|
|
export const helloWorld = functions.https.onRequest((request, response) => {
|
|
functions.logger.info('Hello logs!', { structuredData: true });
|
|
response.send('{ "data": "Hello from Firebase!" }');
|
|
});
|
|
|
|
export { testFunctionCustomRegion } from './testFunctionCustomRegion';
|
|
export { testFunctionDefaultRegion } from './testFunctionDefaultRegion';
|