//! `docs` subcommand
useabscissa_core::{Command, Runnable};useclap::Args;/// Opens the documentation.
#[derive(Command, Debug, Args)]pubstructDocsCmd{}implRunnable forDocsCmd{fnrun(&self){println!("Please open https://docs.rs/organize-rs in your browser.");}}