Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. import Json.Decode exposing (Decoder, field, string)
  2.  
  3. gifDecoder : Decoder String
  4. gifDecoder =
  5. field "data" (field "image_url" string)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement