module Views where import Request import Response indexGet (Request query url method) = return $ HtmlResponse 200 "index" helloGet req = return $ HtmlResponse 200 "hello"