├── .github └── workflows │ └── haskell-ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── cabal.haskell-ci ├── cabal.project ├── http-api-data.cabal ├── src └── Web │ ├── FormUrlEncoded.hs │ ├── HttpApiData.hs │ └── Internal │ ├── FormUrlEncoded.hs │ └── HttpApiData.hs ├── stack.yaml └── test ├── Spec.hs └── Web └── Internal ├── FormUrlEncodedSpec.hs ├── HttpApiDataSpec.hs └── TestInstances.hs /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /cabal.haskell-ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/cabal.haskell-ci -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- 1 | packages: . 2 | tests: True 3 | -------------------------------------------------------------------------------- /http-api-data.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/http-api-data.cabal -------------------------------------------------------------------------------- /src/Web/FormUrlEncoded.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/src/Web/FormUrlEncoded.hs -------------------------------------------------------------------------------- /src/Web/HttpApiData.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/src/Web/HttpApiData.hs -------------------------------------------------------------------------------- /src/Web/Internal/FormUrlEncoded.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/src/Web/Internal/FormUrlEncoded.hs -------------------------------------------------------------------------------- /src/Web/Internal/HttpApiData.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/src/Web/Internal/HttpApiData.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | -------------------------------------------------------------------------------- /test/Web/Internal/FormUrlEncodedSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/test/Web/Internal/FormUrlEncodedSpec.hs -------------------------------------------------------------------------------- /test/Web/Internal/HttpApiDataSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/test/Web/Internal/HttpApiDataSpec.hs -------------------------------------------------------------------------------- /test/Web/Internal/TestInstances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizruk/http-api-data/HEAD/test/Web/Internal/TestInstances.hs --------------------------------------------------------------------------------