mirror of
https://github.com/clap-rs/clap
synced 2025-01-10 03:38:50 +00:00
15 lines
236 B
Rust
15 lines
236 B
Rust
//! Shell-specific generators
|
|
|
|
mod bash;
|
|
mod elvish;
|
|
mod fish;
|
|
mod powershell;
|
|
mod shell;
|
|
mod zsh;
|
|
|
|
pub use bash::Bash;
|
|
pub use elvish::Elvish;
|
|
pub use fish::Fish;
|
|
pub use powershell::PowerShell;
|
|
pub use shell::Shell;
|
|
pub use zsh::Zsh;
|