This repository has been archived on 2023-01-14. You can view files and clone it, but cannot push or open issues or pull requests.

14 lines
268 B
Rust
Raw Normal View History

2022-12-17 22:56:07 +01:00
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<()> {
2022-12-18 01:41:12 +01:00
util::shell::run(&["src", "login"], None)?;
2022-12-17 22:56:07 +01:00
Ok(())
}
}