mirror of
https://github.com/clap-rs/clap
synced 2025-01-25 10:55:00 +00:00
12 lines
172 B
Rust
12 lines
172 B
Rust
|
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;
|