UNPKG

speedrunapi

Version:

An library to use with the SpeedRun.com API.

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