mirror of
https://github.com/fiatjaf/nak.git
synced 2025-12-09 09:08:50 +00:00
19 lines
365 B
Scala
19 lines
365 B
Scala
import io.circe.Printer
|
|
|
|
object Utils {
|
|
val jsonPrinter = Printer(
|
|
dropNullValues = false,
|
|
indent = " ",
|
|
lbraceRight = "\n",
|
|
rbraceLeft = "\n",
|
|
lbracketRight = "\n",
|
|
rbracketLeft = "\n",
|
|
lrbracketsEmpty = "",
|
|
arrayCommaRight = "\n",
|
|
objectCommaRight = "\n",
|
|
colonLeft = "",
|
|
colonRight = " ",
|
|
sortKeys = true
|
|
)
|
|
}
|