添加工具 help 说明
Signed-off-by: Jia Chao <jiac13@chinaunicom.cn>
This commit is contained in:
parent
c88ee97f76
commit
e29b653964
|
@ -1,6 +1,8 @@
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
|
|
||||||
// 构建命令行工具的结构体
|
// 构建命令行工具的结构体
|
||||||
|
/// cvrf2cusa 是一个用于将 CVRF(Common Vulnerability Reporting Framework)格式的安全报告转换为
|
||||||
|
/// CUSA(CULinux Security Advisory)的工具,其输入格式为 Xml ,输出格式则为 Json。
|
||||||
#[derive(Clone, Debug, Parser)]
|
#[derive(Clone, Debug, Parser)]
|
||||||
#[command(author, version, about, long_about = None)]
|
#[command(author, version, about, long_about = None)]
|
||||||
pub struct Cli {
|
pub struct Cli {
|
||||||
|
@ -18,6 +20,7 @@ pub struct Cli {
|
||||||
pub print: bool,
|
pub print: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 从命令行环境变量读取并转换为 `Cli`
|
||||||
pub fn parse() -> Cli {
|
pub fn parse() -> Cli {
|
||||||
Cli::parse()
|
Cli::parse()
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user