All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hackle.sdk.common.HackleRegion.kt Maven / Gradle / Ivy

The newest version!
package io.hackle.sdk.common

enum class HackleRegion(
    internal val sdkUrl: String,
    internal val eventUrl: String,
    internal val monitoringUrl: String,
) {

    DEFAULT(
        sdkUrl = "https://sdk.hackle.io",
        eventUrl = "https://event.hackle.io",
        monitoringUrl = "https://monitoring.hackle.io"
    ),

    STATIC(
        sdkUrl = "https://static-sdk.hackle.io",
        eventUrl = "https://static-event.hackle.io",
        monitoringUrl = "https://static-monitoring.hackle.io"
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy