siera_afj_rest/
lib.rs

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