siera_agent/modules/mod.rs
1/// Connection module for a generic cloudagent
2pub mod connection;
3
4/// Credential module for a generic cloudagent
5pub mod credential;
6
7/// Credential definition module for a generic cloudagent
8pub mod credential_definition;
9
10/// Feature module for a generic cloudagent
11pub mod feature;
12
13/// Basic Message module for a generic cloudagent
14pub mod basic_message;
15
16/// Out Of Band Module for a generic cloudagent
17pub mod oob;
18
19/// Proof module for a generic cloudagent
20pub mod proof;
21
22/// Schema module for a generic cloudagent
23pub mod schema;
24
25/// Multitenancy module for a generic cloudagent
26pub mod multitenancy;
27
28/// wallet module for a generic cloudagent
29pub mod wallet;
30
31/// webhook module for a generic cloudagent
32pub mod webhook;