ltfi_wsap/lib.rs
1//! LTFI-WSAP Rust SDK
2//!
3//! Official Rust SDK for the LTFI-WSAP (Layered Transformer Framework Intelligence -
4//! Web System Alignment Protocol) API.
5
6pub mod client;
7pub mod types;
8pub mod error;
9
10pub use client::{Client, Config};
11pub use types::*;
12pub use error::{Error, Result};
13
14// Re-export commonly used items
15pub use types::{
16 DisclosureLevel,
17 EntityType,
18 Entity,
19 CreateEntityRequest,
20 UpdateEntityRequest,
21 Verification,
22 WSAPData,
23};