For sub-modules, is there reason you cannot mix Ar...
# arkenv
p
For sub-modules, is there reason you cannot mix Arkenv subclasses with objects? e.g.
Copy code
class MyAppConfig: Arkenv() {
    val db by module(DbModule)
}

object DbModule {
    val jdbcUrl: String by argument()
}