blob: fae0a32bfd30145a6f6d3238369c1c8f0cda7551 (
plain)
1
2
3
4
5
6
7
8
9
10
|
module Request where
-- Request query url method
data Request = Request String String String
getQuery (Request query _ _) = query
getUrl (Request _ url _) = url
getMethod (Request _ _ method) = method
|