tradaf 0.1.1

Tranduit Data Format: Translate serialized data from one format to another.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod lib;

use crate::lib::*;

use clap::Parser;
use std::io;

fn main() {
    let opt = Opt::parse();

    transcode(opt, &mut io::stdin(), &mut io::stdout());
}