tuitbot_core/context/mod.rs
1//! Context aggregation service for strategy-grade intelligence.
2//!
3//! Provides reusable functions to aggregate historical data into
4//! actionable context: author profiles, engagement recommendations,
5//! and topic performance snapshots.
6
7pub mod author;
8pub mod engagement;
9pub mod topics;
10pub mod winning_dna;
11
12#[cfg(test)]
13mod tests;