@ducatus/ducatus-wallet-service-rev
Version:
A service for Mutisig HD Bitcoin Wallets
15 lines (11 loc) • 402 B
text/typescript
import { PushNotificationsService } from '../lib/pushnotificationsservice';
const config = require('../config');
const log = require('npmlog');
log.debug = log.verbose;
log.level = 'debug';
const pushNotificationsService = new PushNotificationsService();
pushNotificationsService.start(config, err => {
if (err) throw err;
log.debug('Push Notification Service started');
});