gwm 0.3.4

Git Worktree Manager - A CLI tool for managing Git worktrees with an interactive TUI
Documentation
1
2
3
4
5
6
7
8
9
10
//! CLI module for gwm.
//!
//! This module provides the command-line interface using clap.

pub mod args;

pub use args::{
    AddArgs, CleanArgs, Cli, Commands, CompletionArgs, CompletionShell, GoArgs, HelpArgs, InitArgs,
    ListArgs, OutputFormat, RemoveArgs, ShellType,
};