catalyst 0.1.1

A lightweight API testing tool
Documentation
1
2
3
4
5
6
use catalyst::{Opts, run};
use clap::Parser;

fn main() {
    run(Opts::parse());
}