auths-sdk 0.1.2

Application services layer for Auths identity operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Domain services for device.

/// Delegated device workflows (Model D — KERI delegation)
pub mod delegation;
/// Device errors
pub mod error;
/// Device services
pub mod service;
/// Device types and configuration
pub mod types;

pub use delegation::{
    DeviceDelegationInfo, DeviceDelegationResult, add_device, list_delegated_devices, remove_device,
};
pub use error::*;
pub use types::*;