From 6b0fe5bf638079d535e70c3c91e78fe35a5d2a2f Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 26 Oct 2024 05:29:26 +0000 Subject: group imports with rustfmt --- azalea-client/src/chat.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'azalea-client/src/chat.rs') diff --git a/azalea-client/src/chat.rs b/azalea-client/src/chat.rs index 1b4b7228..751893b7 100755 --- a/azalea-client/src/chat.rs +++ b/azalea-client/src/chat.rs @@ -1,5 +1,10 @@ //! Implementations of chat-related features. +use std::{ + sync::Arc, + time::{SystemTime, UNIX_EPOCH}, +}; + use azalea_chat::FormattedText; use azalea_protocol::packets::game::{ clientbound_disguised_chat_packet::ClientboundDisguisedChatPacket, @@ -15,10 +20,6 @@ use bevy_ecs::{ prelude::Event, schedule::IntoSystemConfigs, }; -use std::{ - sync::Arc, - time::{SystemTime, UNIX_EPOCH}, -}; use uuid::Uuid; use crate::{ -- cgit v1.2.3