From fd6a74e8ca1f5ded2a760b8ac644124862d80d54 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Sun, 24 Aug 2025 01:12:06 -0400 Subject: Hoist `password` out to the top level. Having this buried under `crate::user` makes it hard to split up the roles `user` fulfils right now. Moving it out to its own module makes it a bit tidier to reuse it in a separate, authentication-only way. --- src/user/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/user/mod.rs') diff --git a/src/user/mod.rs b/src/user/mod.rs index 44e1633..60ec209 100644 --- a/src/user/mod.rs +++ b/src/user/mod.rs @@ -5,9 +5,8 @@ pub mod event; pub mod handlers; mod history; mod id; -pub mod password; pub mod repo; mod snapshot; mod validate; -pub use self::{event::Event, history::History, id::Id, password::Password, snapshot::User}; +pub use self::{event::Event, history::History, id::Id, snapshot::User}; -- cgit v1.2.3