locus_sdk/lib.rs
1//! High-level Rust SDK for STTP memory workflows.
2//!
3//! `locus-sdk` composes low-level storage and parsing capabilities from `locus-core-rs`
4//! into ergonomic workflow services for applications, agents, and operators.
5//! The crate is transport-neutral and can run in-process or behind gateway surfaces.
6
7pub mod application;
8pub mod domain;
9pub mod infrastructure;
10pub mod interface;
11pub mod prelude;
12pub mod testing;