Skip to main content

systemprompt_analytics/models/cli/
mod.rs

1//! Row DTOs consumed by `systemprompt-cli` analytics reports. Each submodule
2//! groups rows for a single CLI command family (agents, content, overview,
3//! requests, sessions, tools).
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::*;