Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Module to define a stub processor to return a predefined response

/// Definition of the stub processor
///
/// <svg width="40" height="40">
#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/doc_assets/proc.svg"))]
/// </svg>
pub mod proc;

/// Definition of the stub adaptor
///
/// <svg width="40" height="40">
#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/doc_assets/adaptor.svg"))]
/// </svg>
pub mod adaptor;