commonMain.com.bselzer.gw2.v2.client.instance.TileClientConfiguration.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.instance
import com.bselzer.gw2.v2.client.constant.TileEndpoints
/**
* The configuration for the [TileClient]
*/
data class TileClientConfiguration(
/**
* The base url aliases for the tile service.
*/
val baseUrls: Collection = TileEndpoints.ALIAS_URLS.plus(TileEndpoints.BASE_URL)
)