1pub mod auth;
6pub mod automation;
7pub mod config;
8pub mod content;
9pub mod context;
10pub mod error;
11pub mod llm;
12pub mod mcp_policy;
13pub mod mutation_gateway;
14pub mod net;
15pub mod safety;
16pub mod scheduling;
17pub mod scoring;
18pub mod source;
19pub mod startup;
20pub mod storage;
21pub mod strategy;
22pub mod toolkit;
23pub mod workflow;
24pub mod x_api;
25mod x_client_transaction;
26
27pub use error::*;
28
29#[cfg(feature = "test-helpers")]
30pub mod testing;
31
32pub fn version() -> &'static str {
34 env!("CARGO_PKG_VERSION")
35}