UNPKG

potcore-wallet-service

Version:
18 lines (12 loc) 418 B
#!/usr/bin/env node 'use strict'; 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'); });