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

io.edurt.datacap.parser.trino.TrinoParserModule.kt Maven / Gradle / Ivy

There is a newer version: 2024.4.1
Show newest version
package io.edurt.datacap.parser.trino

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy