ATrium API is a Rust library that includes the definitions of XRPC requests and their associated input/output model types. These codes are generated from the Lexicon schema on atproto.com.
You can use any HTTP client that implements atrium_xrpc::HttpClient
to make use of the XRPC requests. atrium_xrpc
also includes a default implementation using reqwest
.
```rust,norun use atriumapi::client::AtpServiceClient; use atriumapi::com::atproto::server::createsession::Input; use atrium_api::xrpc::client::reqwest::ReqwestClient; use std::sync::Arc;
async fn main() -> Result<(), Box