Adjust the format of imports in Asterinas

This commit is contained in:
Chen Chengjun
2024-02-25 22:09:24 +08:00
committed by Tate, Hongliang Tian
parent 92e488e727
commit cfcef6965a
384 changed files with 2264 additions and 2059 deletions

View File

@ -4,10 +4,14 @@ use std::path::PathBuf;
use clap::{crate_version, Args, Parser};
use crate::commands::{execute_check_command, execute_clippy_command, execute_new_command};
use crate::config_manager::boot::{BootLoader, BootProtocol};
use crate::config_manager::qemu::QemuMachine;
use crate::config_manager::{BuildConfig, RunConfig, TestConfig};
use crate::{
commands::{execute_check_command, execute_clippy_command, execute_new_command},
config_manager::{
boot::{BootLoader, BootProtocol},
qemu::QemuMachine,
BuildConfig, RunConfig, TestConfig,
},
};
pub fn main() {
let osdk_subcommand = match Cli::parse() {