Skip to content

Commit

Permalink
lint: fix formatter check
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinkys committed May 31, 2024
1 parent 809b4e4 commit 503af53
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion crates/indexify_internal_api/src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use anyhow::Result;
use std::collections::HashMap;

use anyhow::Result;

pub fn convert_serde_to_prost_json(
serde_json: serde_json::Value,
) -> Result<prost_wkt_types::Value> {
Expand Down
5 changes: 4 additions & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ use axum_typed_websockets::WebSocketUpgrade;
use hyper::{header::CONTENT_TYPE, Method};
use indexify_internal_api as internal_api;
use indexify_proto::indexify_coordinator::{
self, GcTaskAcknowledgement, ListStateChangesRequest, ListTasksRequest,
self,
GcTaskAcknowledgement,
ListStateChangesRequest,
ListTasksRequest,
};
use prometheus::Encoder;
use rust_embed::RustEmbed;
Expand Down

0 comments on commit 503af53

Please sign in to comment.