com.c0x12c.featureflag.notification.SlackNotifierConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
A module for managing feature flags
package com.c0x12c.featureflag.notification
data class SlackNotifierConfig(
val webhookUrl: String,
val excludedStatuses: List = emptyList(),
var requestHeaders: Map = emptyMap()
)