clap/clap_complete/src/shells/mod.rs

16 lines
236 B
Rust
Raw Normal View History

2021-12-31 19:20:55 +00:00
//! Shell-specific generators
2020-02-05 10:04:59 +00:00
mod bash;
mod elvish;
mod fish;
mod powershell;
2021-12-31 19:20:55 +00:00
mod shell;
2020-02-05 10:04:59 +00:00
mod zsh;
pub use bash::Bash;
pub use elvish::Elvish;
pub use fish::Fish;
pub use powershell::PowerShell;
2021-12-31 19:20:55 +00:00
pub use shell::Shell;
2020-02-05 10:04:59 +00:00
pub use zsh::Zsh;