• File: push.service.js
  • Full Path: /var/www/nodejs/Notifications_Imali_API/src/services/push.service.js
  • Date Modified: 02/26/2025 1:00 PM
  • File size: 217 bytes
  • MIME-type: text/plain
  • Charset: utf-8
//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;