is it possible to use a suspend function in a koin...
# koin
w
is it possible to use a suspend function in a koin module for something that provides an instance of the object i care about? i know its not supported natively but i’m still looking for workarounds
p
Perhaps return a
Deferred<MyAwesomeType>
from the Koin module, and then you can
await()
a value in your code?
w
that’s a good idea. i might give that a go