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

main.lavalink.server.config.SentryConfigProperties.kt Maven / Gradle / Ivy

package lavalink.server.config

import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.stereotype.Component

/**
 * Created by napster on 20.05.18.
 */
@Component
@ConfigurationProperties(prefix = "sentry")
class SentryConfigProperties {
    var dsn = ""
    var environment = ""
    var tags: Map = HashMap()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy