with sourcegraph as well

This commit is contained in:
2022-12-17 22:56:07 +01:00
parent 6dc747f8b0
commit 51b54f83b6
8 changed files with 104 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
pub struct Auth;
impl util::Cmd for Auth {
fn cmd() -> eyre::Result<clap::Command> {
Ok(clap::Command::new("auth"))
}
fn exec(_: &clap::ArgMatches) -> eyre::Result<()> {
util::shell::run(&["src", "login"])?;
Ok(())
}
}