pitchfork-cli 2.13.1

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 jdx project family
#[derive(Debug, clap::Args)]
pub struct Sponsors;

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

  37signals - https://37signals.com

View all sponsors: https://github.com/sponsors/jdx"#
        );
        Ok(())
    }
}