json_preprocessor 0.1.0

JSON PreProcessor
Documentation
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();
}