rustack_ses_http/lib.rs
1//! SES HTTP service layer for Rustack.
2//!
3//! SES v1 uses the `awsQuery` protocol (same as SNS): requests are
4//! `application/x-www-form-urlencoded` with `Action=<op>` dispatch,
5//! responses are `text/xml`.
6//!
7//! SES v2 uses `restJson1` with path-based routing under `/v2/email/`.
8
9pub mod body;
10pub mod dispatch;
11pub mod request;
12pub mod response;
13pub mod router;
14pub mod service;
15pub mod v2;