All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.edurt.datacap.convert.txt.TxtModule.kt Maven / Gradle / Ivy

There is a newer version: 2024.03.9
Show newest version
package io.edurt.datacap.convert.txt

import com.google.inject.multibindings.Multibinder
import io.edurt.datacap.convert.Convert
import io.edurt.datacap.convert.ConvertModule

class TxtModule : ConvertModule()
{
    override fun configure()
    {
        Multibinder.newSetBinder(this.binder(), Convert::class.java)
            .addBinding()
            .to(TxtConvert::class.java)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy