├── LICENSE ├── Network └── Wai │ └── Handler │ └── Warp.hs ├── README ├── Setup.lhs ├── Timeout.hs ├── bigtable-single.hs ├── bigtable-stream.hs ├── file.hs ├── pong.hs ├── runtests.hs ├── statuses.hs ├── test.txt ├── undrained.hs └── warp.cabal /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/LICENSE -------------------------------------------------------------------------------- /Network/Wai/Handler/Warp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/Network/Wai/Handler/Warp.hs -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/Setup.lhs -------------------------------------------------------------------------------- /Timeout.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/Timeout.hs -------------------------------------------------------------------------------- /bigtable-single.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/bigtable-single.hs -------------------------------------------------------------------------------- /bigtable-stream.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/bigtable-stream.hs -------------------------------------------------------------------------------- /file.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/file.hs -------------------------------------------------------------------------------- /pong.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/pong.hs -------------------------------------------------------------------------------- /runtests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/runtests.hs -------------------------------------------------------------------------------- /statuses.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/statuses.hs -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | This is a test. 2 | -------------------------------------------------------------------------------- /undrained.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/undrained.hs -------------------------------------------------------------------------------- /warp.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softmechanics/warp/HEAD/warp.cabal --------------------------------------------------------------------------------