support setting the default file when parsedefault complex structures. ``` type ConfigA struct { config ConfigB `config:"config" default:"configb.yaml"` } type ConfigB struct { A string `config:"a"` B string `config:"b"` } ``` configb.yaml ``` a: aaa b: bbb ```
support setting the default file when parsedefault complex structures.
configb.yaml