Files
SimpleNotes/search/src/main/kotlin/SeachModule.kt
T
2020-08-19 19:02:15 +02:00

10 lines
239 B
Kotlin

package be.simplenotes.search
import be.simplenotes.domain.usecases.search.NoteSearcher
import org.koin.dsl.module
import java.nio.file.Path
val searchModule = module {
single<NoteSearcher> { NoteSearcherImpl(Path.of(".lucene")) }
}