8 lines
115 B
Rust
8 lines
115 B
Rust
|
pub mod cli;
|
||
|
|
||
|
pub fn auth(i: &cli::Cli) {
|
||
|
match i.command {
|
||
|
cli::Command::Open(_) => todo!(),
|
||
|
};
|
||
|
}
|