MIT licensed and maintained by Oleg Grenrus
This version can be pinned in stack with:waitra-0.0.3.0@sha256:797a13f12ba1df149aa39abb89f742458bd2549cab8eec62a5ee03d2e1b75b99,2255

Module documentation for 0.0.3.0

Waitra

Waitra is a very simple router. It’s useful for writing simple API web-services, when you don’t want to use the whole Yesod stack.

Build Status

Synopsis

echoRoute :: Route
echoRoute = routeGet (echoApp <$ string "/api/echo/" <*> many anySym)
  where echoApp msg _req respond = respond $ responseLBS status200 [] (fromString msg)

app :: Application
app = waitraMiddleware [echoRoute] $ staticApp $ embeddedSettings $(mkRecursiveEmbedded "static")

Documentation

Documentation is available at hackage.