Files
dc-project/src/main/kotlin/fr/dcproject/component/follow/KoinModule.kt

10 lines
235 B
Kotlin

package fr.dcproject.component.follow
import org.koin.dsl.module
val followKoinModule = module {
single { FollowArticleRepository(get()) }
single { FollowConstitutionRepository(get()) }
single { FollowAccessControl() }
}