mirror of
https://github.com/ricoriedel/wipe.git
synced 2025-04-05 23:38:24 +00:00
22 lines
367 B
Rust
22 lines
367 B
Rust
use clap::Parser;
|
|
|
|
mod color;
|
|
mod char;
|
|
mod fill;
|
|
mod vec;
|
|
mod array;
|
|
mod surface;
|
|
mod animation;
|
|
mod sampler;
|
|
|
|
#[derive(Parser)]
|
|
#[clap(author = "Rico Riedel", version = "0.1.0", about = "Wipe your terminal with a random animation.")]
|
|
struct Args {
|
|
#[clap(long, default_value = ".-+%#", help = "Set chars")]
|
|
chars: String
|
|
}
|
|
|
|
fn main() {
|
|
Args::parse();
|
|
}
|