Rohan Sircar
cb26393fcd
Split codebase into modules Added custom all in one error type Added password to user model Added password hashing using bcrypt Added model validation for username using regex
5 lines
76 B
Rust
5 lines
76 B
Rust
pub mod auth;
|
|
pub mod users;
|
|
pub use self::auth::*;
|
|
pub use self::users::*;
|