We've done something like this to support decoding dates form our config files ``` scala implicit val configuredLocalDate: Configured[LocalDate] = new Configured[LocalDate] { def apply(a: CfgValue) = Some(LocalDate.parse(a.pretty.replace("\"", ""), ofPattern("dd MMM yyyy"))) } ``` Is that something that could/should go into the `CfgValue` trait? We'd do a pull request but aren't sure how you'd prefer it to slot in.
We've done something like this to support decoding dates form our config files
Is that something that could/should go into the
CfgValuetrait? We'd do a pull request but aren't sure how you'd prefer it to slot in.