42 lines
1.4 KiB
Haskell
42 lines
1.4 KiB
Haskell
|
module MultiRoute where
|
||
|
|
||
|
import Prelude (discard, show, (<>), ($))
|
||
|
|
||
|
import Control.Monad.Eff.Console as Console
|
||
|
import HTTPure as HTTPure
|
||
|
|
||
|
-- | Serve the example server on this port
|
||
|
port :: Int
|
||
|
port = 8081
|
||
|
|
||
|
-- | Shortcut for `show port`
|
||
|
portS :: String
|
||
|
portS = show port
|
||
|
|
||
|
-- | Specify the routes
|
||
|
routes :: forall e. Array (HTTPure.Route e)
|
||
|
routes =
|
||
|
[ HTTPure.Get "/hello"
|
||
|
{ status: \_ -> 200
|
||
|
, headers: \_ -> []
|
||
|
, body: \_ -> "hello"
|
||
|
}
|
||
|
, HTTPure.Get "/goodbye"
|
||
|
{ status: \_ -> 200
|
||
|
, headers: \_ -> []
|
||
|
, body: \_ -> "goodbye"
|
||
|
}
|
||
|
]
|
||
|
|
||
|
-- | Boot up the server
|
||
|
main :: forall e. HTTPure.HTTPureM (console :: Console.CONSOLE | e)
|
||
|
main = HTTPure.serve port routes do
|
||
|
Console.log $ ""
|
||
|
Console.log $ " ┌───────────────────────────────────────────────┐"
|
||
|
Console.log $ " │ Server now up on port " <> portS <> " │"
|
||
|
Console.log $ " │ │"
|
||
|
Console.log $ " │ To test, run: │"
|
||
|
Console.log $ " │ > curl localhost:" <> portS <> "/hello # => hello │"
|
||
|
Console.log $ " │ > curl localhost:" <> portS <> "/goodbye # => goodbye │"
|
||
|
Console.log $ " └───────────────────────────────────────────────┘"
|