Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
d029bd3bbae27727243da8773780a33c9bdac020
/
.
/
crates
/
clap_complete
/
src
/
shells
/
mod.rs
blob: a08aa878b66816473470b6d1e5998aebe73c999f [
file
] [
log
] [
blame
]
//! 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
;