mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-10 13:56:48 +00:00
25 lines
356 B
Rust
25 lines
356 B
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
use env_logger::Env;
|
|
|
|
#[macro_use]
|
|
extern crate log;
|
|
#[macro_use]
|
|
extern crate serde;
|
|
|
|
mod base_crate;
|
|
mod bundle;
|
|
mod cli;
|
|
mod commands;
|
|
mod config_manager;
|
|
mod error;
|
|
mod utils;
|
|
|
|
fn main() {
|
|
// init logger
|
|
let env = Env::new().filter("OSDK_LOG_LEVEL");
|
|
env_logger::init_from_env(env);
|
|
|
|
cli::main();
|
|
}
|