@owstack/wallet-service
Version:
A service for multisignature HD wallets
24 lines (17 loc) • 638 B
JavaScript
;
var owsCommon = require('@owstack/ows-common');
var Context = owsCommon.util.Context;
var BasePushNotificationsService = require('../../base-service').PushNotificationsService;
var PushNotificationsService = require('../lib/pushnotificationsservice');
var context = new Context({
PushNotificationsService: PushNotificationsService
});
class CPushNotificationsService extends BasePushNotificationsService {
constructor(config) {
super(context, config);
}
};
// Start the service with base configuration (default) and no options.
var service = new CPushNotificationsService();
service.start();