//! In memory signatory //! //! Implements the Signatory trait from cdk-common to manage the key in-process, to be included //! inside the mint to be executed as a single process. //! //! Even if it is embedded in the same process, the keys are not accessible from the outside of this //! module, all communication is done through the Signatory trait and the signatory manager. #[cfg(feature = "grpc")] mod proto; #[cfg(feature = "grpc")] pub use proto::{client::SignatoryRpcClient, server::grpc_server}; mod common; pub mod memory; pub mod service; pub mod signatory;