rustutils-base64 0.1.0

Base64 encode or decode a file, or standard input, to standard output
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;
use rustutils_base64::Base64;
use rustutils_runnable::Runnable;
use std::process::ExitCode;

fn main() -> ExitCode {
    Base64::parse().main()
}