spire_api/agent/
mod.rs

1//! Agent API
2//!
3//! Consists of the following APIs:
4//! - `delegated_identity`: For managing delegated identities.
5//! - `debug`: (Not yet implemented).
6//!
7//! # Note
8//! Access these APIs via the `admin_socket_path` in the [agent configuration file](https://spiffe.io/docs/latest/deploying/spire_agent/#agent-configuration-file).
9#![allow(clippy::result_large_err)]
10pub mod delegated_identity;