blob: 47d81e582a865a7364803d09fdd88b62767ebc3f (
plain)
1
2
3
4
5
6
7
8
9
10
|
module Views where
import Request
import Response
indexGet (Request query url method) =
return $ HtmlResponse 200 "<strong>index</strong>"
helloGet req =
return $ HtmlResponse 200 "<i>hello</i>"
|