wasi-worker-cli 0.6.0

Tool to create and deploy WASM WASI-based browser service workers
Documentation
1
2
3
4
5
6
7
use structopt::StructOpt;
use wasi_worker_cli::Cli;

fn main() {
    let opt = Cli::from_args();
    opt.exec().expect("command failed");
}