From 0ad0a8cf0bca118c2aa30df6848b00a9b8de5689 Mon Sep 17 00:00:00 2001 From: BitHeaven Date: Fri, 22 Mar 2024 15:24:15 +0500 Subject: [PATCH] API return OK (need make dynamic) --- src/api.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api.rs b/src/api.rs index cfc0ed7..446128b 100644 --- a/src/api.rs +++ b/src/api.rs @@ -32,5 +32,5 @@ pub async fn endpoint(req: Request, pool: DBPool) -> (String, StatusCo }; let restype: HeaderValue = "application/json".parse().unwrap(); - (res.to_string(), StatusCode::IM_A_TEAPOT, restype) + (res.to_string(), StatusCode::OK, restype) }