bio.ferlab.datalake.commons.config.SimpleConfiguration.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake-commons_2.12 Show documentation
Show all versions of datalake-commons_2.12 Show documentation
Library built on top of Apache Spark to speed-up data lakes development..
package bio.ferlab.datalake.commons.config
import pureconfig.ConfigReader
case class SimpleConfiguration(datalake: DatalakeConf) extends ConfigurationWrapper(datalake) {
}
object SimpleConfiguration {
import pureconfig.generic.auto._
import pureconfig.generic.semiauto._
implicit val configReader: ConfigReader[SimpleConfiguration] = deriveReader[SimpleConfiguration]
}