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;