mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
const DDragonRequest = require('../../DDragonRequest')
|
|
|
|
class DDragonChampionEndpoint {
|
|
constructor(version) {
|
|
this.version = version
|
|
}
|
|
|
|
list() {
|
|
return new DDragonRequest(
|
|
`champion.json`,
|
|
'cdn',
|
|
this.version
|
|
).execute()
|
|
}
|
|
}
|
|
|
|
module.exports = DDragonChampionEndpoint
|