1 2 3 4 5 6 7 8
//! Bootstrap command handler - minimal machine bootstrap use crate::bootstrap; /// Run the bootstrap command pub fn run_bootstrap() { bootstrap::bootstrap(); }