-
-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[skip ci] Add readme to examples directory
- Loading branch information
1 parent
11d80e6
commit f7a0999
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Examples | ||
This folder contains examples showing how to use `async-stripe`. Each example | ||
is setup as its own crate so the dependencies are clear. | ||
|
||
The examples include: | ||
- `endpoints`: General usage, including API calls for commonly used resources, along | ||
with examples of using different request strategies. | ||
- `pagination`: Async streaming of Stripe API calls which allow [Pagination](https://stripe.com/docs/api/pagination) | ||
- `webhook-actix`: Receiving Stripe webhooks using the web framework `actix-web` | ||
- `webhook-rocket`: Receiving Stripe webhooks using the web framework `rocket` | ||
- `webhook-axum`: Receiving Stripe webhooks using the web framework `axum` |