Skip to main content

systemprompt_models/modules/
mod.rs

1//! Path constants and service-category classification shared across API/CLI
2//! surfaces.
3//!
4//! Copyright (c) systemprompt.io — Business Source License 1.1.
5//! See <https://systemprompt.io> for licensing details.
6
7mod api_paths;
8mod cli_paths;
9mod service_category;
10
11pub use api_paths::ApiPaths;
12pub use cli_paths::CliPaths;
13pub use service_category::ServiceCategory;