bittorrent-tracker/index.js

8 lines
247 B
JavaScript
Raw Normal View History

2020-05-17 19:38:46 +00:00
/*! bittorrent-tracker. MIT License. WebTorrent LLC <https://webtorrent.io/opensource> */
const Client = require('./client')
const Server = require('./server')
module.exports = Client
module.exports.Client = Client
module.exports.Server = Server