Skip to content

Instantly share code, notes, and snippets.

@derekjw
Created April 12, 2016 09:13
package org.example
import io.circe.generic.JsonCodec
import io.circe.syntax._
@JsonCodec
case class Foo(value: String)
object Main extends App {
println(Foo("foo").asJson.noSpaces)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment