UNPKG

bitcore-wallet-service

Version:
12 lines (9 loc) 357 B
#!/usr/bin/env node import config from '../config'; import logger from '../lib/logger'; import { PushNotificationsService } from '../lib/pushnotificationsservice'; const pushNotificationsService = new PushNotificationsService(); pushNotificationsService.start(config, err => { if (err) throw err; logger.info('Push Notification Service started'); });