···11+// Folder-specific settings
22+//
33+// For a full list of overridable settings, and general information on folder-specific settings,
44+// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
55+{}
+7-2
README.md
···33[](https://hex.pm/packages/requwu)
44[](https://hexdocs.pm/requwu/)
5566+A cutesy HTTP client for Gleam.
77+68```sh
79gleam add requwu@1
810```
911```gleam
1212+import gleam/http/request
1013import requwu
11141212-pub fn main() -> Nil {
1313- // TODO: An example of requwu in use
1515+pub fn main() {
1616+ let assert Ok(req) = request.to("https://example.com")
1717+ let assert Ok(response) = requwu.send(req)
1818+ echo response
1419}
1520```
1621