upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/nostr_git_remote_helper/src/sub_commands/capabilities.rs
blob: 325cb3b2ebc70bfb0541511a34c9589cad0c237d (plain)
1
2
3
4
5
6
7
8
use anyhow::Result;

// https://git-scm.com/docs/gitremote-helpers#_capabilities
pub async fn launch() -> Result<()> {
    // blank line indicates end of capabilities
    println("");
    Ok(())
}