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()) }