From 851700065a6fe6d0ebd3e5e12521e6b9b6789260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E8=BF=90=E5=AE=B6?= Date: Fri, 24 May 2024 16:43:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9social=20error=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/src/resp/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/resp/response.rs b/library/src/resp/response.rs index 2331b02..5e21a13 100644 --- a/library/src/resp/response.rs +++ b/library/src/resp/response.rs @@ -103,7 +103,7 @@ impl IntoResponse for ResErr { let code = 80000; match msg { Some(v) => Status::<()>::Err(code, v), - None => Status::<()>::Err(code, String::from("社交服务异常")), + None => Status::<()>::Err(code, String::from("社交业务异常")), } } };