openapi-tui 0.10.2

This TUI allows you to list and browse APIs described by the openapi specification.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::Parser;

use crate::utils::version;

#[derive(Parser, Debug)]
#[command(author, version = version(), about)]
pub struct Cli {
  #[arg(
    short,
    long,
    value_name = "PATH",
    help = "Input file or url, in json or yaml format with openapi specification"
  )]
  pub input: String,
}