Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ------------------------------------------------------------------------------
  2. -- | The application's routes.
  3. routes :: [(ByteString, Handler App App ())]
  4. routes = [ ("/login",    with auth handleLoginSubmit)
  5.          , ("/logout",   with auth handleLogout)
  6.          , ("/new_user", with auth handleNewUser)
  7.          , ("",          serveDirectory "static")
  8.          ]