Placed App after mkYesod in the RawResponse test.

This commit is contained in:
Daniel Díaz 2015-08-23 22:53:13 +02:00
parent e77f6bd709
commit 5375bacf81

View File

@ -24,14 +24,14 @@ import Data.Streaming.Network (bindPortTCP)
import Network.HTTP.Types (status200)
import Blaze.ByteString.Builder (fromByteString)
data App = App
mkYesod "App" [parseRoutes|
/ HomeR GET
/wai-stream WaiStreamR GET
/wai-app-stream WaiAppStreamR GET
|]
data App = App
instance Yesod App
getHomeR :: Handler ()