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

com.github.j5ik2o.akka.persistence.dynamodb.utils.ConfigRenderUtils.scala Maven / Gradle / Ivy

package com.github.j5ik2o.akka.persistence.dynamodb.utils

import com.typesafe.config.{ Config, ConfigRenderOptions }

object ConfigRenderUtils {

  def renderConfigToString(config: Config): String = {
    config.root().render(ConfigRenderOptions.concise().setFormatted(true).setJson(false))
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy