pitchfork-cli 2.13.0

Daemons with DX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::Result;

/// Show the companies sponsoring pitchfork and the en.dev project family
#[derive(Debug, clap::Args)]
pub struct Sponsors;

impl Sponsors {
    pub async fn run() -> Result<()> {
        println!(
            r#"pitchfork and the en.dev project family are sponsored by:

  37signals - https://37signals.com

View all sponsors: https://en.dev/sponsors.html"#
        );
        Ok(())
    }
}