clap/clap_complete/src/generators/shells/mod.rs

12 lines
172 B
Rust
Raw Normal View History

2020-02-05 10:04:59 +00:00
mod bash;
mod elvish;
mod fish;
mod powershell;
mod zsh;
pub use bash::Bash;
pub use elvish::Elvish;
pub use fish::Fish;
pub use powershell::PowerShell;
pub use zsh::Zsh;