Rename to natter.

This commit is contained in:
Tom Alexander
2023-12-21 19:28:31 -05:00
parent d641c8d638
commit 35dff5cdaf
8 changed files with 27 additions and 27 deletions

View File

@@ -4,7 +4,7 @@ use clap::Subcommand;
use std::path::PathBuf;
#[derive(Parser, Debug)]
#[command(name = "Writer")]
#[command(name = "Natter")]
#[command(version = env!("CARGO_PKG_VERSION"))]
#[command(about = "Generate a static site.", long_about = None)]
#[command(propagate_version = true)]
@@ -24,14 +24,14 @@ pub(crate) enum Commands {
#[derive(Args, Debug)]
pub(crate) struct InitArgs {
/// Path where you want the initial writer structure to be located.
/// Path where you want the initial natter structure to be located.
#[arg(short, long)]
pub(crate) path: PathBuf,
}
#[derive(Args, Debug)]
pub(crate) struct BuildArgs {
/// Path to the writer config file.
/// Path to the natter config file.
#[arg(short, long)]
pub(crate) config: PathBuf,
}