manta_shared/shared/mod.rs
1//! Types shared between the CLI and the HTTP server.
2//!
3//! Everything in this module is "wire-shaped" data — request parameter
4//! structs and re-exports of the response types returned by the manta
5//! server. There is no business logic here. Both `crate::cli` and
6//! `crate::server`/`crate::service` consume these types; nothing in
7//! this module depends on either layer.
8//!
9//! Future-proofing: once the codebase is split into a Cargo workspace, this
10//! module becomes the `manta-shared` library crate.
11
12pub mod auth;
13pub mod cluster_status;
14pub mod dto;
15pub mod params;