but I still don't care where `Context` comes from ...
# random
k
but I still don't care where
Context
comes from so I mark it as `@Provided`:
class Greeter(@Provided val c: Context, val message: String)
and I get a
GreeterFactory
for free which I can use as a "dependency" and just supply the message:
Copy code
@Injected val greeterFactory: GreeterFactory

val greeter = greeterFactory.create(message)