Skip to content

Commit db70695

Browse files
author
Ryan Miville
committed
rename to aws_api
1 parent 873246c commit db70695

File tree

321 files changed

+1521
-1520
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+1521
-1520
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# aws_request
1+
# aws_api
22

33
An AWS request builder for Gleam, generated using [aws_codegen](https://github.com/ryanmiville/aws_codegen) and built on top of [aws4_request](https://github.com/lpil/aws4_request).
44

5-
[![Package Version](https://img.shields.io/hexpm/v/aws_request)](https://hex.pm/packages/aws_request)
6-
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/aws_request/)
5+
[![Package Version](https://img.shields.io/hexpm/v/aws_api)](https://hex.pm/packages/aws_api)
6+
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/aws_api/)
77

88
```sh
9-
gleam add aws_request
9+
gleam add aws_api
1010
```
1111

1212
```gleam
13-
import aws_request/service/dynamodb
13+
import aws_api/service/dynamodb
1414
import gleam/bit_array
1515
import gleam/httpc
1616
@@ -66,7 +66,7 @@ Ok(Response(
6666

6767
## Project Goals
6868

69-
`aws_request` is NOT an AWS SDK for Gleam. It intends to be a base for idiomatic SDKs.
69+
`aws_api` is NOT an AWS SDK for Gleam. It intends to be a base for idiomatic SDKs.
7070

7171
## Missing features
7272

gleam.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name = "aws_request"
1+
name = "aws_api"
22
version = "0.1.0"
33

44
description = "An AWS request builder for Gleam"
55
licences = ["Apache-2.0"]
6-
repository = { type = "github", user = "ryanmiville", repo = "aws_request" }
6+
repository = { type = "github", user = "ryanmiville", repo = "aws_api" }
77

88
[dependencies]
99
gleam_stdlib = ">= 0.34.0 and < 2.0.0"

src/aws_request/internal/endpoint.gleam src/aws_api/internal/endpoint.gleam

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import aws4_request.{type Signer, Signer}
2-
import aws_request/internal/metadata.{type Metadata, Global}
2+
import aws_api/internal/metadata.{type Metadata, Global}
33
import gleam/option.{None, Some}
44
import gleam/string
55

File renamed without changes.

0 commit comments

Comments
 (0)