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