hello world
This commit is contained in:
9
functions/index.js
Normal file
9
functions/index.js
Normal 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");
|
||||
});
|
Reference in New Issue
Block a user