Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
Signed-off-by: remzi <[email protected]>
  • Loading branch information
HaoYang670 committed Dec 19, 2024
1 parent b63a351 commit 0b199e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rucat_common/src/database_client/surrealdb_client.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Client of SurrealDB
use axum::async_trait;
use ::serde::Deserialize;
use axum::async_trait;

use crate::engine::{EngineId, StartEngineRequest};
use crate::error::{Result, RucatError};
Expand Down Expand Up @@ -211,7 +211,8 @@ impl DatabaseClient for SurrealDBClient {
info: EngineInfo,
}

let id_and_info: Vec<EngineIdStringAndInfo> = self.client
let id_and_info: Vec<EngineIdStringAndInfo> = self
.client
.query(sql)
.bind(("tb", Self::TABLE))
.await
Expand Down

0 comments on commit 0b199e9

Please sign in to comment.