2024-05-29 21:42:18 -04:00
|
|
|
// src/main.rs
|
|
|
|
|
2024-05-30 14:50:34 -04:00
|
|
|
mod manip;
|
|
|
|
mod tests;
|
2024-05-29 21:42:18 -04:00
|
|
|
|
2024-05-30 20:59:22 -04:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2024-05-30 18:48:17 -04:00
|
|
|
use clap::Parser;
|
|
|
|
|
|
|
|
#[derive(Parser)]
|
2024-05-30 20:59:22 -04:00
|
|
|
#[command(version, about, long_about = None)]
|
2024-05-30 18:48:17 -04:00
|
|
|
struct Cli {
|
2024-05-30 20:59:22 -04:00
|
|
|
/// Selects a custom config file (optional)
|
|
|
|
config: Option<PathBuf>,
|
|
|
|
|
|
|
|
/// Sets output directory (optional, defaults to current directory)
|
|
|
|
output_dir: Option<PathBuf>,
|
|
|
|
|
|
|
|
/// Specifies block files/directories
|
|
|
|
#[arg(short, long)]
|
|
|
|
block: Vec<PathBuf>,
|
|
|
|
|
|
|
|
/// Specifies silence files/directories
|
|
|
|
#[arg(short, long)]
|
|
|
|
mute: Vec<PathBuf>,
|
|
|
|
// TODO more options
|
2024-05-30 18:48:17 -04:00
|
|
|
// TODO verbose mode
|
|
|
|
}
|
|
|
|
|
2024-05-29 21:42:18 -04:00
|
|
|
fn main() {
|
2024-05-30 20:59:22 -04:00
|
|
|
let cli = Cli::parse();
|
|
|
|
|
2024-05-30 18:48:17 -04:00
|
|
|
// TODO argument parsing - IN PROGRESS
|
2024-05-30 02:59:40 -04:00
|
|
|
// TODO logging
|
2024-05-30 20:59:22 -04:00
|
|
|
}
|