Open-source multiplayer game server compatible with the RuneScape client https://www.openrs2.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
openrs2/conf/src/main/kotlin/org/openrs2/conf/ConfigModule.kt

20 lines
578 B

package org.openrs2.conf
import com.google.inject.AbstractModule
import com.google.inject.Scopes
import org.bouncycastle.crypto.params.RSAPrivateCrtKeyParameters
import org.openrs2.yaml.YamlModule
public object ConfigModule : AbstractModule() {
override fun configure() {
install(YamlModule)
bind(Config::class.java)
.toProvider(ConfigProvider::class.java)
.`in`(Scopes.SINGLETON)
bind(RSAPrivateCrtKeyParameters::class.java)
.toProvider(RsaKeyProvider::class.java)
.`in`(Scopes.SINGLETON)
}
}