config for functions directory

This commit is contained in:
talksik
2022-06-01 18:23:58 -05:00
parent 5f80bfea7c
commit 0c347b1cb2
3 changed files with 19 additions and 19 deletions
+6 -5
View File
@@ -1,9 +1,10 @@
import * as functions from "firebase-functions";
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("Hello from Firebase!");
// });
export const helloWorld = functions.https.onRequest((request, response) => {
functions.logger.info('Hello logs!', { structuredData: true });
response.send('Hello from Firebase!');
});