├── .firebaserc ├── .gitignore ├── README.md ├── firebase.json └── functions ├── index.js ├── package-lock.json └── package.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emndeniz/VoipPush-FirebaseCloudFunction/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emndeniz/VoipPush-FirebaseCloudFunction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emndeniz/VoipPush-FirebaseCloudFunction/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emndeniz/VoipPush-FirebaseCloudFunction/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emndeniz/VoipPush-FirebaseCloudFunction/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emndeniz/VoipPush-FirebaseCloudFunction/HEAD/functions/package.json --------------------------------------------------------------------------------