From f149374e2c6682ea5b9b1d692b001d6ab5faea4a Mon Sep 17 00:00:00 2001 From: mrw1593 Date: Sun, 19 Mar 2023 12:24:28 -0400 Subject: Implement password hashing --- src/api/liveops.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/api/liveops.rs') diff --git a/src/api/liveops.rs b/src/api/liveops.rs index de77eb7..ff44107 100644 --- a/src/api/liveops.rs +++ b/src/api/liveops.rs @@ -1,5 +1,6 @@ use actix_web::{get, web, HttpResponse, Scope}; +/// Simple ping #[get("ping")] async fn ping() -> HttpResponse { HttpResponse::Ok().finish() -- cgit v1.2.3