uuidtools 0.1.2

Simple cli tool for generating uuids
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;
use clap::Parser;
use uuidtools::args::Args;

#[tokio::main]
async fn main() -> Result<()> {
    let args = Args::parse();

    uuidtools::run(args).await
}