From c9579cb9ca2a6a165d10f128e0af1dfd372e0c03 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Sun, 21 Mar 2021 20:04:39 +0000 Subject: Implement server (#23) * Add initial database and server setup * Set up all routes, auth, etc * Implement sessions, password auth, hashing with argon2, and history storage --- src/remote/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/remote/mod.rs') diff --git a/src/remote/mod.rs b/src/remote/mod.rs index 74f47ad3..7147b88e 100644 --- a/src/remote/mod.rs +++ b/src/remote/mod.rs @@ -1 +1,5 @@ +pub mod auth; +pub mod database; +pub mod models; pub mod server; +pub mod views; -- cgit v1.3.1