fediloom/src/main.rs

36 lines
687 B
Rust
Raw Normal View History

// src/main.rs
mod manip;
mod tests;
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
}
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
}