finish consumer
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-08-13 12:58:06 +02:00
parent f00a80e521
commit 5be7150939
5 changed files with 67 additions and 2 deletions

View File

@@ -5,5 +5,5 @@ import database.service.ResultObjectService
import org.koin.dsl.module
val databasemodule = module(createdAtStart = true) {
single { ResultObjectService() as IResultObjectService }
single<IResultObjectService> { ResultObjectService() }
}