cstats_hook/templates/
mod.rs

1//! Shell hook templates
2
3/// Bash shell hook template
4pub const BASH_TEMPLATE: &str = include_str!("bash.sh");
5
6/// Zsh shell hook template  
7pub const ZSH_TEMPLATE: &str = include_str!("zsh.sh");
8
9/// Fish shell hook template
10pub const FISH_TEMPLATE: &str = include_str!("fish.fish");
11
12/// PowerShell hook template
13pub const POWERSHELL_TEMPLATE: &str = include_str!("powershell.ps1");