1//! Shell-specific generators 2 3mod bash; 4mod elvish; 5mod fish; 6mod powershell; 7mod shell; 8mod zsh; 9 10pub use bash::Bash; 11pub use elvish::Elvish; 12pub use fish::Fish; 13pub use powershell::PowerShell; 14pub use shell::Shell; 15pub use zsh::Zsh; 16