Skip to content

Commit

Permalink
adding a CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Parker committed Jun 27, 2010
1 parent d539be9 commit e9596c6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
v0.0.2
-- added support for query string. it's accessible in the request record from "params".
it's a Data.Map.
-- e.g.:

module Blog where
import Bird

get, post, put, delete :: Request -> IO Reply

get r = ok $ "query string = " ++ (show $ params r)
post _ = return notFound_
put _ = return notFound_
delete _ = return notFound_

0 comments on commit e9596c6

Please sign in to comment.