step_done

Function step_done 

Source
pub fn step_done()
Expand description

Print a step completion marker

§Examples

use oxur_cli::common::output::{step, step_done};

step(1, "Parsing input");
// ... do work ...
step_done();
// Output:    ✓ Done (in green, indented)