style: 应用 rustfmt 格式化

整理 components、commands、entity 和 utils 中的 import 顺序、尾逗号、换行与文件末尾换行。

这保持代码风格与 rustfmt 输出一致,减少后续功能提交里的格式噪音。
This commit is contained in:
2026-05-09 22:02:15 +08:00
parent 405cdaab81
commit 02e72fc9d8
4 changed files with 47 additions and 50 deletions

View File

@@ -1,4 +1,4 @@
use clap::{arg, Args, Parser, Subcommand};
use clap::{Args, Parser, Subcommand, arg};
pub mod components;
pub mod create;
@@ -68,5 +68,5 @@ pub struct ComponentsArgs {
pub texture: Option<String>,
/// The item's identifier
#[arg(short, long)]
pub identifier: Option<String>
pub identifier: Option<String>,
}