bitcore-wallet-service/pushnotificationsservice/pushnotificationsservice.js

17 lines
399 B
JavaScript

#!/usr/bin/env node
'use strict';
var log = require('npmlog');
log.debug = log.verbose;
var config = require('../config');
var PushNotificationsService = require('../lib/pushnotificationsservice');
var pushNotificationsService = new PushNotificationsService();
pushNotificationsService.start(config, function(err) {
if (err) throw err;
console.log('Push Notification Service started');
});