Implement manpage generation for goose-cli (#6980)

Signed-off-by: Rodolfo Olivieri <rodolfo.olivieri3@gmail.com>
This commit is contained in:
Rodolfo Olivieri
2026-02-10 12:30:12 -03:00
committed by GitHub
parent 72601fd3cb
commit 58e86d58ed
6 changed files with 209 additions and 2 deletions
+2 -2
View File
@@ -35,8 +35,8 @@ use std::path::PathBuf;
use tracing::warn;
#[derive(Parser)]
#[command(author, version, display_name = "", about, long_about = None)]
struct Cli {
#[command(name = "goose", author, version, display_name = "", about, long_about = None)]
pub struct Cli {
#[command(subcommand)]
command: Option<Command>,
}