10 lines
239 B
Kotlin
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")) }
|
|
}
|