aboutsummaryrefslogtreecommitdiff
path: root/src/test/kotlin/com/romangraef/jrconfig/MainKt.kt
blob: 504b4467e04bef04e308a216687c76d9eaf337de (plain)
1
2
3
4
5
6
7
8
package com.romangraef.jrconfig

val token = Config.get<String>("token")

fun main() {
    Config.use(FilePropertiesProvider.create("config.properties"))
    println(token.get())
}