usage-cli 3.5.0

CLI for working with usage-based CLIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Show the companies sponsoring usage and the en.dev project family
#[derive(clap::Args)]
pub struct Sponsors;

impl Sponsors {
    pub fn run(&self) -> miette::Result<()> {
        println!(
            "usage and the en.dev project family are sponsored by:\n\n  37signals - https://37signals.com\n\nView all sponsors: https://en.dev/sponsors.html"
        );
        Ok(())
    }
}