siera_cloudagent_python/
lib.rs

1//! Aries cloudagent Python controller. This is a simple wrapper around the
2//! endpoints of an Aries cloudagent Python. It is a minimal wrapper and does
3//! not do a lot of conversion and just sends it back to any frontend which
4//! relies on this.
5
6#[macro_use]
7extern crate siera_logger;
8
9/// All of the submodule functionality of an Aries cloudagent Python
10pub mod cloudagent;
11
12/// Simple web bindings for the module to interact with the cloudagent
13mod web;
14
15/// TODO
16pub mod agent;
17
18/// Macro module
19#[macro_use]
20mod macros;