siera_agent/
lib.rs

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