Marko Kunic
11/29/2021, 10:41 AMget()
?Christiano
11/29/2021, 10:45 AMcreatedAtStart
Boolean?arnaud.giuliani
11/29/2021, 11:26 AMMarko Kunic
11/29/2021, 11:26 AMget()
arnaud.giuliani
11/29/2021, 11:46 AMMarko Kunic
11/29/2021, 2:32 PMsingle { StoreRepository() }
without writing get()
for every argumetn, or ideally something like:
App:
resource: '../src/main/kotlin'
that would register everything in that package as a service, and then we would manually need to register things that couldn't be auto registered.
just wondering if something like this existschrisjenx
11/29/2021, 11:26 PMsingleBy<StoreRepositoryImpl, StoreRepository>
was awesome, not sure why that didn't live on.arnaud.giuliani
12/02/2021, 8:57 AMMarko Kunic
12/09/2021, 12:10 PMsingle { PurchaseService(get(), get(), get(), get()) }
single { AcceptPurchase(get(), get(), get()) }
single<PurchaseRepository> { ExposedPurchaseRepository(get()) }
I end up with loads get()