Skip to main content

systemprompt_analytics/models/reporting/
mod.rs

1//! Row DTOs backing analytics reports. Each submodule groups rows for a
2//! single report family (agents, content, overview, requests, sessions,
3//! tools); `systemprompt-cli` is the primary consumer.
4//!
5//! Copyright (c) systemprompt.io — Business Source License 1.1.
6//! See <https://systemprompt.io> for licensing details.
7
8mod agent;
9mod content;
10mod overview;
11mod request;
12mod session;
13mod tool;
14
15pub use agent::*;
16pub use content::*;
17pub use overview::*;
18pub use request::*;
19pub use session::*;
20pub use tool::*;