siera_automations/
lib.rs

1//! Crate that contains the automations that any cloudagent can execute. This
2//! includes scripts like automatically create a connection, register the
3//! schema and credential definition and issue the credential afterwards.
4
5#[macro_use]
6extern crate siera_logger;
7
8/// Automation module that contains every automation script
9pub mod automations;
10
11/// Error module that includes the user-level errors and the result type
12mod error;