bittorrent-tracker/index.js
Jimmy Wärting 447423fc46 modernize client and index using lebab
- Uses class, const let, etc
- Removed self variable
- Creating a new Client without `new` keyword don’t work anymore
- Replaced inherits with class extends
2018-10-03 12:09:02 +02:00

7 lines
157 B
JavaScript

const Client = require('./client')
const Server = require('./server')
module.exports = Client
module.exports.Client = Client
module.exports.Server = Server