Norbi
09/20/2023, 8:45 AMmodule
extension property generated for the class annotated by @Module
:
public val some.package.MyModule.module : org.koin.core.module.Module get() = some_package_MyModule // <---
public val some_package_MyModule : Module = module { ... }
How should I use it?
Shouldn't it be generated as MyModule.Companion.module
instead?Companion
instead (and require companion object
to exist until the namespace feature is not available).