1 2 3 4 5 6 7 8 9 10 11
//! Crate that contains traits and structs to implement for an agent like aries-cloudagent-python
//! or aries-framework-javascript REST. This does not contain any functionality as that should be
//! handled by the other crates implementing this crate
#![deny(clippy::missing_docs_in_private_items)]
/// Error module that includes the user-level errors and the result type
pub mod error;
/// Traits and structures for a generic cloudagent
pub mod modules;