commonMain.com.bselzer.gw2.v2.client.constant.TileEndpoints.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of v2-tile-client-jvm Show documentation
Show all versions of v2-tile-client-jvm Show documentation
Tiling service for Guild Wars 2 map images.
package com.bselzer.gw2.v2.client.constant
/**
* Common endpoint constants.
*/
internal object TileEndpoints {
/**
* The base url.
*/
const val BASE_URL = "https://tiles.guildwars2.com"
/**
* The alias urls.
*/
val ALIAS_URLS = listOf(
"https://tiles1.guildwars2.com",
"https://tiles2.guildwars2.com",
"https://tiles3.guildwars2.com",
"https://tiles4.guildwars2.com"
)
}