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
+1 -1
View File
@@ -26,7 +26,7 @@ val domainModule = module {
single<PasswordHash> { BcryptPasswordHash() }
single { SimpleJwt(get()) }
single { JwtPayloadExtractor(get()) }
single { NoteService(get(), get()) }
single { NoteService(get(), get(), get()) }
single<MarkdownConverter> { MarkdownConverterImpl() }
single<ExportUseCase> { ExportUseCaseImpl(get()) }
}