UNPKG

speedrunapi

Version:

An library to use with the SpeedRun.com API.

18 lines (13 loc) 348 B
'use strict' let Endpoint = require('../Endpoint') /** * Refer to SpeedrunAPI docs for more information * https://github.com/speedruncom/api/blob/master/version1/developers.md */ class Developers extends Endpoint { constructor (opts) { opts = opts || {} super('developers', opts) } } module.exports = Developers