aboutsummaryrefslogtreecommitdiffstats
path: root/src/remote/auth.rs
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-04-20 17:07:11 +0100
committerGitHub <noreply@github.com>2021-04-20 16:07:11 +0000
commit34888827f8a06de835cbe5833a06914f28cce514 (patch)
tree8b56f20e50065cd2c222d5e8e067ec55cf1947a1 /src/remote/auth.rs
parentOptimise docker (#34) (diff)
downloadatuin-34888827f8a06de835cbe5833a06914f28cce514.zip
Switch to Warp + SQLx, use async, switch to Rust stable (#36)
* Switch to warp + sql, use async and stable rust * Update CI to use stable
Diffstat (limited to '')
-rw-r--r--src/server/auth.rs (renamed from src/remote/auth.rs)2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/remote/auth.rs b/src/server/auth.rs
index cf61b077..52a73108 100644
--- a/src/remote/auth.rs
+++ b/src/server/auth.rs
@@ -1,3 +1,4 @@
+/*
use self::diesel::prelude::*;
use eyre::Result;
use rocket::http::Status;
@@ -218,3 +219,4 @@ pub fn login(conn: AtuinDbConn, login: Json<LoginRequest>) -> ApiResponse {
json: json!({"session": session.token}),
}
}
+*/