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

io.edurt.datacap.parser.mysql.MySQLParserModule.kt Maven / Gradle / Ivy

There is a newer version: 2024.3.11
Show newest version
package io.edurt.datacap.parser.mysql

import com.google.inject.multibindings.Multibinder
import io.edurt.datacap.parser.ParserModule
import io.edurt.datacap.parser.SqlParser

class MySQLParserModule : ParserModule() {
    override fun configure() {
        Multibinder.newSetBinder(binder(), SqlParser::class.java)
                .addBinding()
                .to(MySQLSqlParser::class.java)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy