mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
const DDragonRequest = require('../../DDragonRequest')
|
|
|
|
class DDragonVersionEndpoint {
|
|
list() {
|
|
return new DDragonRequest(
|
|
`versions.json`,
|
|
'api',
|
|
null
|
|
).execute()
|
|
}
|
|
}
|
|
|
|
module.exports = DDragonVersionEndpoint
|