I'm investigating adding Koin to my Kmp project. i...
# koin
s
I'm investigating adding Koin to my Kmp project. iOS + Android. The kmp sample is pretty old (main branch using version 3.2.0) of koin, but does anyone know why the sample wrap the Greeter class in a GreeterHelper?
Copy code
class 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?