Item Type
Item Name
Search file in folder and subfolders...
//services const axios = require('axios'); const {PushConf}=require('../models/Push'); function triggerPush(data){ return axios.post(process.env.PUSH_ENDPOINT,data,new PushConf()); } module.exports=triggerPush;