ATrium API: Rust library for Bluesky's atproto services
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.
Usage
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
.
use AtpServiceClient;
use Input;
use ReqwestClient;
async