1//! Secret-storage domain handlers for `CocoonService`. 2//! `GetSecret::Fn`, `StoreSecret::Fn`, `DeleteSecret::Fn`. 3 4pub mod DeleteSecret; 5 6pub mod GetSecret; 7 8pub mod StoreSecret;