main.wisp.config.Configurable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisp-config Show documentation
Show all versions of wisp-config Show documentation
a module containing config helpers
package wisp.config
import kotlin.reflect.KClass
interface Configurable {
fun configure(config: T)
fun getConfigClass(): KClass
}