From 3cc6ab6af5e41561129ec7446ae13c518c5e4459 Mon Sep 17 00:00:00 2001 From: ARCJ137442 <61109168+ARCJ137442@users.noreply.github.com> Date: Sat, 14 Sep 2024 16:13:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20:green=5Fheart:=20=E5=86=8D=E5=BA=A6?= =?UTF-8?q?=E5=B0=9D=E8=AF=95=E4=BF=AE=E5=A4=8DCI=E6=9E=84=E5=BB=BA=20@=20?= =?UTF-8?q?rustfmt=E3=80=8C=E6=9C=AA=E5=AE=8C=E6=88=90=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E5=8C=96=E7=9A=84=E6=96=87=E4=BB=B6=E3=80=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cli/websocket_server.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cli/websocket_server.rs b/src/cli/websocket_server.rs index 5826837..d75b6bf 100644 --- a/src/cli/websocket_server.rs +++ b/src/cli/websocket_server.rs @@ -2,9 +2,9 @@ //! * 🎯为BabelNAR CLI实现Websocket IO //! * 🎯实现专有的Websocket服务端逻辑 -use crate::cli::{LaunchConfigWebsocket, RuntimeConfig, RuntimeManager}; -use anyhow::Result; use crate::{ + cli::{LaunchConfigWebsocket, RuntimeConfig, RuntimeManager}, + eprintln_cli, if_let_err_eprintln_cli, println_cli, support::{ error_handling_boost::error_anyhow, io::{ @@ -12,8 +12,8 @@ use crate::{ websocket::to_address, }, }, - eprintln_cli, if_let_err_eprintln_cli, println_cli, }; +use anyhow::Result; use navm::{output::Output, vm::VmRuntime}; use std::{ sync::Arc,