--
You received this message because you are subscribed to the Google Groups "Elm Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
decodeUser : Json.Decoder User
decodeUser = Json.object4 User
("name" := Json.string)
("avatar_url" := Json.string)
("repos_url" := Json.string)
(Json.oneOf
[ "languages" := Json.list Json.string
, Json.succeed []
])
--
You received this message because you are subscribed to the Google Groups "Elm Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.