xref: /DADK/dadk/src/lib.rs (revision cfb7b78ff5dff2a09cba93336ba222be89cbd3e1)
1 use context::build_exec_context;
2 
3 mod actions;
4 mod console;
5 mod context;
6 mod utils;
7 
8 extern crate anyhow;
9 
10 pub fn dadk_main() {
11     // dadk_user_main();
12     let exec_ctx = build_exec_context().expect("Failed to build execution context");
13     log::debug!("Execution context: {:?}", exec_ctx);
14     actions::run(exec_ctx);
15 }
16