mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-26 02:43:24 +00:00
Adjust the format of imports in Asterinas
This commit is contained in:
committed by
Tate, Hongliang Tian
parent
92e488e727
commit
cfcef6965a
@ -9,14 +9,17 @@
|
||||
|
||||
extern crate alloc;
|
||||
|
||||
use alloc::collections::BTreeMap;
|
||||
use alloc::string::{String, ToString};
|
||||
use alloc::vec::Vec;
|
||||
use alloc::{borrow::ToOwned, fmt::Debug};
|
||||
use log::{debug, error, info};
|
||||
use alloc::{
|
||||
borrow::ToOwned,
|
||||
collections::BTreeMap,
|
||||
fmt::Debug,
|
||||
string::{String, ToString},
|
||||
vec::Vec,
|
||||
};
|
||||
|
||||
pub use component_macro::*;
|
||||
pub use inventory::submit;
|
||||
use log::{debug, error, info};
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum ComponentInitError {
|
||||
|
Reference in New Issue
Block a user