ltfi-wsap 2.0.2

LTFI-WSAP (Layered Transformer Framework Intelligence - Web System Alignment Protocol) Rust SDK
Documentation
//! LTFI-WSAP Rust SDK
//! 
//! Official Rust SDK for the LTFI-WSAP (Layered Transformer Framework Intelligence - 
//! Web System Alignment Protocol) API.

pub mod client;
pub mod types;
pub mod error;

pub use client::{Client, Config};
pub use types::*;
pub use error::{Error, Result};

// Re-export commonly used items
pub use types::{
    DisclosureLevel,
    EntityType,
    Entity,
    CreateEntityRequest,
    UpdateEntityRequest,
    Verification,
    WSAPData,
};