kitt_throbbler 0.1.3

A Knight Rider style LED animation for terminal output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# KITT Throbbler

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

## Usage

```rust
use kitt_throbbler::Throbber;

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