organize-rs 0.3.0

organize - a file management automation tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `docs` subcommand

use abscissa_core::{Command, Runnable};
use clap::Args;

/// Opens the documentation.
#[derive(Command, Debug, Args)]
pub struct DocsCmd {}

impl Runnable for DocsCmd {
    fn run(&self) {
        println!("Please open https://docs.rs/organize-rs in your browser.");
    }
}