treeboot 0.4.1

Bootstrap Git worktrees from one repo-local setup file.
1
2
3
4
5
6
7
8
9
10
use treeboot_core::{OutputEvent, Reporter};

pub(crate) struct StdoutReporter;

impl Reporter for StdoutReporter {
    fn report(&mut self, event: OutputEvent) -> std::io::Result<()> {
        println!("{}", event.message());
        Ok(())
    }
}