via-cli 0.2.0

Run commands and API requests with 1Password-backed credentials without exposing secrets to your shell
Documentation
1
2
3
4
5
6
use std::{env::args_os, process::ExitCode};
use via::run;

fn main() -> ExitCode {
    run(args_os())
}