spinoff/examples/stop_and_persist.rs
2022-07-15 19:59:22 +02:00

10 lines
245 B
Rust

use spinoff::Spinners;
use std::thread::sleep;
use std::time::Duration;
fn main() {
let sp = spinoff::new(Spinners::Dots, "Loading...", None);
sleep(Duration::from_secs(5));
sp.stop_and_persist("🍕", "Pizza!", "yellow".into());
}