agent_first_http/shared/mod.rs
1//! Feature-agnostic types: error enum, ids, artifact tokens, the protocol
2//! AFDATA adapter, redaction list, and duration parsing. Compiles in both
3//! sdk-only and host builds; never touches chromiumoxide or axum.
4
5pub mod afdata;
6pub mod artifacts;
7pub mod error;
8pub mod ids;
9pub mod path;
10pub mod profile_snapshot;
11pub mod redact;
12pub mod time;
13
14#[cfg(test)]
15mod contract_tests;