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