99damage-api 中文文档教程
99Damage API
A NodeJS API for 99damage.de
How to install
npm install --save 99damage-api
How to use
var damage = require('99damage-api');
damage.getMatches(function(matches) {
console.log(matches);
});
damage.getMatch(matchId, function(match) {
console.log(match);
});