Last active
January 15, 2016 03:08
-
-
Save mkscrg/a2c04bdba82855a53ba2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .stack-work/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: haskell-libraries-talk | |
| version: 0.1.0.0 | |
| homepage: http://github.com/wagonhq/haskell-libraries-talk | |
| license: BSD3 | |
| build-type: Simple | |
| cabal-version: >=1.10 | |
| library | |
| default-language: Haskell2010 | |
| default-extensions: | |
| FlexibleContexts | |
| OverloadedStrings | |
| ScopedTypeVariables | |
| build-depends: | |
| base | |
| -- what we're talking about | |
| , wai | |
| , conduit | |
| , resourcet | |
| -- etc | |
| , blaze-builder | |
| , bytestring | |
| , conduit-combinators | |
| , http-types | |
| , mtl | |
| , string-conversions | |
| , text | |
| , transformers | |
| , warp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Main where | |
| import Data.ByteString (ByteString) | |
| import Data.Text (Text) | |
| import qualified Network.HTTP.Types as HTTP | |
| import qualified Network.Wai as Wai | |
| import qualified Network.Wai.Handler.Warp as Warp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resolver: lts-4.1 | |
| packages: | |
| - '.' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export PS1='\u\$ ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment