hello world

This commit is contained in:
2022-11-24 13:43:26 +00:00
commit 08e76bb9c9
9 changed files with 4488 additions and 0 deletions

9
functions/index.js Normal file
View File

@ -0,0 +1,9 @@
const functions = require("firebase-functions");
// // Create and Deploy Your First Cloud Functions
// // https://firebase.google.com/docs/functions/write-firebase-functions
//
exports.helloWorld = functions.https.onRequest((request, response) => {
functions.logger.info("Hello logs!", {structuredData: true});
response.send("firebase he;lo world");
});