Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created April 18, 2016 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/a6adba7f9bf78ac5b49848946d09f8f8 to your computer and use it in GitHub Desktop.
Save chuck0523/a6adba7f9bf78ac5b49848946d09f8f8 to your computer and use it in GitHub Desktop.
type alias Model =
{ topic : String
, gifUrl : String
}
init : String -> (Model, Effects Action)
init topic =
( Model topic "assets/waiting.gif"
, getRandomGif topic
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment