1 2 3 4 5 6 7 8 9
use clap::Parser; use json_preprocessor::Args; pub fn main() { env_logger::init(); let args = Args::parse(); args.execute(); }