xref: /DADK/dadk/src/lib.rs (revision eaa67f3cf8881c221a744937c6318444b068a801)
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 
dadk_main()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