It'd be great to allow something like this: ```kotlin object MyConfig : ConfigSpec() { val foo by required<Map<MyEnum, String>>() } enum class MyEnum { FOO, BAR, } ``` ```yaml myConfig: FOO: hey BAR: ho ```
It'd be great to allow something like this: