Siggi Gunnarss
08/20/2025, 9:03 AMclass GreetingHelper : KoinComponent {
private val greeting : Greeting by inject()
fun greet() : String = greeting.greeting()
}
The greeting could be public there and iOS would have direct access to the class (via the GreeterHelper as a factory), right?