usecrate::keystore::backend::GenericKeyStore;/// `KeystoreContext` trait provides access to the generic keystore from the context.
pubtraitKeystoreContext<RwLock: lock_api::RawRwLock> {/// Get the keystore client from the context.
fnkeystore(&self)->color_eyre::Result<GenericKeyStore<RwLock>, crate::config::Error>;}