gnostr-ngit 948363.1875.7190

nostr plugin for git
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(test), warn(clippy::pedantic))]
#![allow(clippy::large_futures, clippy::module_name_repetitions)]
#![allow(dead_code)]
#![cfg_attr(not(test), warn(clippy::expect_used))]

use anyhow::Result;

#[tokio::main]
async fn main() -> Result<()> {
    gnostr_ngit::git_remote_nostr::run().await
}