mirror of
https://github.com/zoriya/flood.git
synced 2025-12-06 07:16:18 +00:00
16 lines
283 B
JavaScript
16 lines
283 B
JavaScript
var client = require('./client')();
|
|
|
|
function clientStats() {
|
|
|
|
if((this instanceof clientStats) === false) {
|
|
return new clientStats();
|
|
}
|
|
};
|
|
|
|
clientStats.prototype.getStats = function(callback) {
|
|
|
|
client.getClientStats(callback);
|
|
};
|
|
|
|
module.exports = clientStats;
|