1//! Path constants and service-category classification shared across API/CLI 2//! surfaces. 3 4mod api_paths; 5mod cli_paths; 6mod service_category; 7 8pub use api_paths::ApiPaths; 9pub use cli_paths::CliPaths; 10pub use service_category::ServiceCategory;