Misc. clap improvements, , more accurate value names, ...

This commit is contained in:
2025-12-15 00:46:56 +09:00
parent 7b79f7b163
commit 6e914dec34
17 changed files with 26 additions and 33 deletions

View File

@@ -1,4 +1,4 @@
use clap::Parser;
use clap::{Parser, Subcommand};
use clap_complete::ArgValueCompleter;
use futures_util::{SinkExt, StreamExt};
use std::path::PathBuf;
@@ -67,7 +67,7 @@ pub struct Args {
config: Option<PathBuf>,
}
#[derive(Parser)]
#[derive(Subcommand)]
pub enum Command {
/// create the USER(s).
Create(CreateArgs),