itns-sidechain/lib/workers/worker.js
Christopher Jeffrey a03fcd1a23
pkg: rename to hsd.
2018-08-01 20:00:09 -07:00

12 lines
255 B
JavaScript

/*!
* worker.js - worker thread/process for hsd
* Copyright (c) 2017-2018, Christopher Jeffrey (MIT License).
* https://github.com/handshake-org/hsd
*/
'use strict';
const Master = require('./master');
const server = new Master();
server.listen();