Created
April 12, 2016 09:13
-
-
Save derekjw/902fa3deafddf2e6e79656d938ecedf5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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