2023-10-31 15:58:35 +00:00
|
|
|
//! The CLI logic.
|
|
|
|
|
2023-10-31 13:51:57 +00:00
|
|
|
use super::{Cli, Parser};
|
|
|
|
|
2023-10-31 15:58:35 +00:00
|
|
|
/// Parse the CLI arguments and execute them.
|
2023-10-31 13:51:57 +00:00
|
|
|
pub fn run() {
|
|
|
|
let cli = Cli::parse();
|
|
|
|
dbg!(cli);
|
|
|
|
}
|