systemprompt_analytics/feedback/mod.rs
1//! Durable normalized evidence and replacement projections for skill analytics.
2//!
3//! Copyright (c) systemprompt.io — Business Source License 1.1.
4//! See <https://systemprompt.io> for licensing details.
5
6mod backfill;
7mod columns;
8mod deltas;
9mod projection;
10mod queue;
11mod repository;
12mod service;
13mod totals;
14mod types;
15mod validation;
16pub use repository::FeedbackFactsRepository;
17pub use service::FactsProcessingService;
18pub use types::*;