potcore-wallet-service
Version:
A service for Mutisig HD Potcoin Wallets
18 lines (12 loc) • 418 B
JavaScript
;
var log = require('npmlog');
log.debug = log.verbose;
log.level = 'debug';
var config = require('../config');
var PushNotificationsService = require('../lib/pushnotificationsservice');
var pushNotificationsService = new PushNotificationsService();
pushNotificationsService.start(config, function(err) {
if (err) throw err;
log.debug('Push Notification Service started');
});