fsf 0.1.0

The Fast Shell Finder, find and execute simple to complex commands quickly and easily
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::{Parser, Subcommand};

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct Args {
    #[command(subcommand)]
    pub cmd: Option<Commands>,
}

#[derive(Subcommand, Debug)]
pub enum Commands {
    Edit,
    Download { url: String },
    Update {},
}