dadk 0.4.0

DragonOS Application Development Kit DragonOS应用开发工具
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use context::build_exec_context;

mod actions;
mod console;
mod context;
mod utils;

extern crate anyhow;

pub fn dadk_main() {
    // dadk_user_main();
    let exec_ctx = build_exec_context().expect("Failed to build execution context");
    log::debug!("Execution context: {:?}", exec_ctx);
    actions::run(exec_ctx);
}