Hi there. So I have very basic setup with a few mo...
# koin
j
Hi there. So I have very basic setup with a few modules and some
single { … }
in them. Can I somehow ensure that if these singletons implement AutoCloseable, their `.close()`s will be called at
stopKoin()
?
ok nvm, found
Copy code
single { blahblah() } .onClose { it?.close() }
🙂