Added firebase functions
This commit is contained in:
5
functions/src/index.ts
Normal file
5
functions/src/index.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import * as functions from 'firebase-functions';
|
||||
|
||||
export const helloWorld = functions.https.onRequest((request, response) => {
|
||||
response.send('Hello from Firebase!');
|
||||
});
|
Reference in New Issue
Block a user