├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gleam.toml ├── src └── gleam │ ├── http.gleam │ └── http │ ├── cookie.gleam │ ├── request.gleam │ ├── response.gleam │ └── service.gleam └── test ├── gleam ├── http │ ├── multipart_test.gleam │ ├── request_test.gleam │ └── response_test.gleam └── http_test.gleam ├── gleam_http_test.gleam └── gleam_http_test_helper.erl /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/README.md -------------------------------------------------------------------------------- /gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/gleam.toml -------------------------------------------------------------------------------- /src/gleam/http.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/src/gleam/http.gleam -------------------------------------------------------------------------------- /src/gleam/http/cookie.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/src/gleam/http/cookie.gleam -------------------------------------------------------------------------------- /src/gleam/http/request.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/src/gleam/http/request.gleam -------------------------------------------------------------------------------- /src/gleam/http/response.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/src/gleam/http/response.gleam -------------------------------------------------------------------------------- /src/gleam/http/service.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/src/gleam/http/service.gleam -------------------------------------------------------------------------------- /test/gleam/http/multipart_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/test/gleam/http/multipart_test.gleam -------------------------------------------------------------------------------- /test/gleam/http/request_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/test/gleam/http/request_test.gleam -------------------------------------------------------------------------------- /test/gleam/http/response_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/test/gleam/http/response_test.gleam -------------------------------------------------------------------------------- /test/gleam/http_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/test/gleam/http_test.gleam -------------------------------------------------------------------------------- /test/gleam_http_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/test/gleam_http_test.gleam -------------------------------------------------------------------------------- /test/gleam_http_test_helper.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleam-lang/http/HEAD/test/gleam_http_test_helper.erl --------------------------------------------------------------------------------