confium_store/backends/mod.rs
1//! In-tree keystore backends.
2//!
3//! Each backend is a module that implements
4//! [`crate::backend::StoreBackend`] and registers itself at link time
5//! via [`crate::register_backend!`]. The `memory` backend ships today;
6//! `filesystem` is stubbed pending the keyfmt integration.
7
8pub mod filesystem;
9pub mod memory;