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