hk 1.48.0

A tool for managing git hooks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::Result;

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

impl Sponsors {
    pub async fn run(&self) -> Result<()> {
        println!(
            "hk 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(())
    }
}