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/placeholder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'nostr_git_remote_helper/src/sub_commands/placeholder.rs')
-rw-r--r--nostr_git_remote_helper/src/sub_commands/placeholder.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/nostr_git_remote_helper/src/sub_commands/placeholder.rs b/nostr_git_remote_helper/src/sub_commands/placeholder.rs
new file mode 100644
index 0000000..ebe05ff
--- /dev/null
+++ b/nostr_git_remote_helper/src/sub_commands/placeholder.rs
@@ -0,0 +1,10 @@
1use anyhow::Result;
2
3use crate::Cli;
4
5#[derive(Debug, clap::Args)]
6pub struct SubCommandArgs {}
7
8pub async fn launch(cli_args: &Cli, args: &SubCommandArgs) -> Result<()> {
9 Ok(())
10}