├── .gitignore ├── .gitmodules ├── .travis.yml ├── ChangeLog.md ├── LICENSE ├── README.md ├── Setup.hs ├── docs.sh ├── ghcjs-servant-client.cabal ├── src └── Servant │ ├── Client.hs │ └── Common │ ├── BaseUrl.hs │ └── Req.hs ├── stack.yaml ├── test-server ├── LICENSE ├── Setup.hs ├── app │ └── Main.hs ├── src │ ├── Api.hs │ └── Server.hs ├── stack.yaml └── test-server.cabal └── tests ├── Api.hs └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/docs.sh -------------------------------------------------------------------------------- /ghcjs-servant-client.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/ghcjs-servant-client.cabal -------------------------------------------------------------------------------- /src/Servant/Client.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/src/Servant/Client.hs -------------------------------------------------------------------------------- /src/Servant/Common/BaseUrl.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/src/Servant/Common/BaseUrl.hs -------------------------------------------------------------------------------- /src/Servant/Common/Req.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/src/Servant/Common/Req.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/stack.yaml -------------------------------------------------------------------------------- /test-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/test-server/LICENSE -------------------------------------------------------------------------------- /test-server/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /test-server/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/test-server/app/Main.hs -------------------------------------------------------------------------------- /test-server/src/Api.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/test-server/src/Api.hs -------------------------------------------------------------------------------- /test-server/src/Server.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/test-server/src/Server.hs -------------------------------------------------------------------------------- /test-server/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/test-server/stack.yaml -------------------------------------------------------------------------------- /test-server/test-server.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/test-server/test-server.cabal -------------------------------------------------------------------------------- /tests/Api.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/tests/Api.hs -------------------------------------------------------------------------------- /tests/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plow-technologies/ghcjs-servant-client/HEAD/tests/Spec.hs --------------------------------------------------------------------------------