io.edurt.datacap.fs.cos.TencentCosModule.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datacap-fs-tencent-cos Show documentation
Show all versions of datacap-fs-tencent-cos Show documentation
DataCap - File system for tencent cos
package io.edurt.datacap.fs.cos
import com.google.inject.multibindings.Multibinder
import io.edurt.datacap.fs.Fs
import io.edurt.datacap.fs.FsModule
class TencentCosModule : FsModule()
{
override fun configure()
{
Multibinder.newSetBinder(binder(), Fs::class.java)
.addBinding()
.to(TencentCosFs::class.java)
}
}