pass_manager/src/handlers/state/mod.rs

17 lines
413 B
Rust
Raw Normal View History

2023-05-09 17:27:58 +00:00
//! This module consists of endpoints to handle the state
2023-05-03 18:08:14 +00:00
mod generic;
mod get_account_name;
mod get_document;
2023-05-03 18:08:14 +00:00
mod get_login;
mod get_master_pass;
mod get_password;
mod handler;
2023-05-03 18:08:14 +00:00
pub use get_account_name::get_account_name;
pub use get_document::get_document;
2023-05-03 18:08:14 +00:00
pub use get_login::get_login;
pub use get_master_pass::get_master_pass;
pub use get_password::get_password;
pub use handler::{Handler, PackagedHandler};