coreutiles 0.1.0

Core utils in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::process;

use clap::Parser;

#[derive(Parser)]
#[command(version, about)]
struct Config {  }

fn main() {
    Config::parse();
    process::exit(0);
}