wardenx_core/
lib.rs

1pub mod database;
2pub use database::*;
3pub mod encrypt;
4pub use encrypt::*;
5pub mod profile {
6    pub mod history;
7    pub mod user;
8}
9pub mod password {
10    pub mod generator;
11    pub mod manager;
12}
13pub use password::generator::*;
14pub use password::manager::*;
15pub use password::*;
16pub use profile::history::*;
17pub use profile::user::*;
18pub use profile::*;
19pub mod sayhi {
20
21    pub use super::*;
22    pub fn hi() {
23        println!("hey");
24    }
25}