gho 0.5.0

cli to open your repo in the Github/Gitlab web ui
1
2
3
4
5
6
7
8
9
10
11
use clap::{crate_authors, crate_version, Parser};

/// Command line utility to quickly open your github/gitlab repo
/// in a browser.
#[derive(Debug, Parser)]
#[clap(version = crate_version!(), author = crate_authors!())]
pub struct Opts {
	/// Name of a remote
	#[clap(index = 1)]
	pub remote: Option<String>,
}