fcoin/lib/workers/worker.js
2018-03-29 21:56:45 -07:00

14 lines
311 B
JavaScript

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