Add searcher to note service

This commit is contained in:
2020-08-19 05:20:17 +02:00
parent 3861fb6b97
commit ab3766b8b8
4 changed files with 48 additions and 11 deletions
+7
View File
@@ -0,0 +1,7 @@
package be.simplenotes.search
import org.koin.dsl.module
val searchModule = module {
single { NoteSearcher() }
}