1 2 3 4 5 6 7 8 9
use chromakopia::animate; use std::time::Duration; #[tokio::main] async fn main() { let anim = animate::flap("AMSTERDAM 15:42 GATE B7 ON TIME", 1.0); tokio::time::sleep(Duration::from_secs(6)).await; anim.stop(); }