chore: app error fmt

This commit is contained in:
nathan 2023-11-28 00:33:26 +08:00
parent 432faee316
commit 5090711272
1 changed files with 2 additions and 2 deletions

View File

@ -87,10 +87,10 @@ pub enum AppError {
#[error(transparent)]
SerdeError(#[from] serde_json::Error),
#[error("connect error:{0}")]
#[error("{0}")]
Connect(String),
#[error("request timeout:{0}")]
#[error("{0}")]
RequestTimeout(String),
}