All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ciris.decoders.CirisConfigDecoders.scala Maven / Gradle / Ivy

There is a newer version: 0.12.1
Show newest version
package ciris.decoders

import ciris.{ConfigDecoder, Secret}

trait CirisConfigDecoders {
  implicit def secretConfigDecoder[A, B](
    implicit decoder: ConfigDecoder[A, B]
  ): ConfigDecoder[A, Secret[B]] = {
    decoder.map(Secret.apply)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy