itns-sidechain/lib/workers/worker.js
Christopher Jeffrey f3db8d8c39
hskd: update links.
2018-06-08 07:13:46 -07:00

12 lines
256 B
JavaScript

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