kitt_throbbler 0.1.3

A Knight Rider style LED animation for terminal output
Documentation

KITT Throbbler

A simple library for creating a Knight Rider-style throbber animation in the terminal.

Usage

use kitt_throbbler::Throbber;

#[tokio::main]
async fn main() {
    let throbber = Throbber::new();
    throbber.start().await;
}