1
2
3
4
5
6
7
//! Response types for the quire-server HTTP API.

/// Response body from `GET /api/runs/:run_id/secrets/:name`.
#[derive(Debug, serde::Deserialize)]
pub struct SecretResponse {
    pub value: String,
}