1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
pub use atrium_xrpc as xrpc;
#[cfg_attr(docsrs, doc(cfg(feature = "agent")))]
#[cfg(feature = "agent")]
pub mod agent;
pub mod app;
pub mod client;
pub mod com;
pub mod did_doc;
pub mod records;
pub mod types;