1
2
3
4
5
6
7
//! # A Key Store API
//!
//! This crate provides [`traits`] and a couple [`types`] to implement a key
//! store.

pub mod traits;
pub mod types;