fediloom/src/main.rs

22 lines
319 B
Rust
Raw Normal View History

// src/main.rs
mod manip;
mod tests;
2024-05-30 18:48:17 -04:00
use clap::Parser;
#[derive(Parser)]
struct Cli {
// TODO inputs
// TODO outputs
// TODO cfg file (TOML)
// TODO options
// TODO verbose mode
//
}
fn main() {
println!("Hello, world!");
2024-05-30 18:48:17 -04:00
// TODO argument parsing - IN PROGRESS
2024-05-30 02:59:40 -04:00
// TODO logging
}