From e38854c7db0fe6f006304d7f638b6aa190fc2d87 Mon Sep 17 00:00:00 2001 From: mrw1593 Date: Mon, 15 May 2023 21:42:47 -0400 Subject: Started on frontend --- src/api/liveops.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/api/liveops.rs') diff --git a/src/api/liveops.rs b/src/api/liveops.rs index 2dda41d..d4bf129 100644 --- a/src/api/liveops.rs +++ b/src/api/liveops.rs @@ -1,11 +1,11 @@ use actix_web::{get, web, HttpResponse, Scope}; /// Simple ping -#[get("ping")] +#[get("/ping")] async fn ping() -> HttpResponse { HttpResponse::Ok().finish() } pub fn service() -> Scope { - web::scope("liveops").service(ping) + web::scope("/liveops").service(ping) } -- cgit v1.2.3