manifold/functions/src/index.ts

7 lines
234 B
TypeScript
Raw Normal View History

2021-12-10 18:10:30 +00:00
import * as functions from "firebase-functions"
export const helloWorld = functions.https.onRequest((request, response) => {
functions.logger.info("Hello logs!", { structuredData: true })
response.send("Hello from Firebase!")
})