up 0.18.1

up is a tool to help you keep your machine up to date.
Documentation
1
2
3
4
5
6
7
8
9
//! Handle the `up doc markdown` subcommand.

use crate::opts::Opts;

/// Run the `up doc markdown` subcommand.
/// Prints the generated markdown to the stdout.
pub(crate) fn run() {
    clap_markdown::print_help_markdown::<Opts>();
}