Skip to content

Instantly share code, notes, and snippets.

@pseudonom
Last active December 16, 2015 23:20
Show Gist options
  • Select an option

  • Save pseudonom/7928ae46b316730bf2f2 to your computer and use it in GitHub Desktop.

Select an option

Save pseudonom/7928ae46b316730bf2f2 to your computer and use it in GitHub Desktop.
Example of Servant handler composition
users :: Handler [User]
users =
return
[ User 1 "Isaac" "Newton"
, User 2 "Albert" "Einstein"
]
firstUser :: Handler User
firstUser = head <$> users
-- Full repo at https://github.com/frontrowed/blog-servant
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment