blob: bed3de5078ce8e98bc0f22c82d14e6fd5d3c062e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Data.List
import Text.Printf
import Network.Wai
import Network.HTTP.Types
import Network.Wai.Handler.Warp (run)
app :: Application
app request respond = respond $
case rawPathInfo request of
"/" -> index
_ -> errorResponse
index :: Response
index =
responseLBS status200
[("Content-Type", "text/plain")]
"Hello, world!"
errorResponse :: Response
errorResponse =
responseFile status200
[("Content-Type", "text/plain")]
"pages/error.html"
Nothing
main :: IO ()
main = do
putStrLn $ "http://localhost:8080/"
run 8080 app
|