forked from openrs2/openrs2
Our convention is one Guice module per subproject, where necessary. Although this currently only includes YamlModule, it will include a future DeobfuscatorMapModule. Signed-off-by: Graham <gpe@openrs2.dev>
parent
971437e142
commit
b6f7576864
@ -0,0 +1,10 @@ |
||||
package dev.openrs2.deob.processor |
||||
|
||||
import com.google.inject.AbstractModule |
||||
import dev.openrs2.yaml.YamlModule |
||||
|
||||
object DeobfuscatorProcessorModule : AbstractModule() { |
||||
override fun configure() { |
||||
install(YamlModule) |
||||
} |
||||
} |
Loading…
Reference in new issue