Răsfoiți Sursa

fixing import order jrpc_handle.rs

Ayush Suresh 4 luni în urmă
părinte
comite
28d4a4ac79
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      apps/pyth-lazer-agent/src/jrpc_handle.rs

+ 1 - 1
apps/pyth-lazer-agent/src/jrpc_handle.rs

@@ -9,8 +9,8 @@ use pyth_lazer_protocol::jrpc::{
     GetMetadataParams, JrpcCall, JrpcError, JrpcErrorResponse, JrpcResponse, JrpcSuccessResponse,
     JsonRpcVersion, PythLazerAgentJrpcV1, SymbolMetadata,
 };
-use soketto::handshake::http::Server;
 use soketto::Sender;
+use soketto::handshake::http::Server;
 use std::str::FromStr;
 use tokio::{pin, select};
 use tokio_util::compat::TokioAsyncReadCompatExt;