cstats-hook 0.1.1

Hook generation for cstats shell integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shell hook templates

/// Bash shell hook template
pub const BASH_TEMPLATE: &str = include_str!("bash.sh");

/// Zsh shell hook template  
pub const ZSH_TEMPLATE: &str = include_str!("zsh.sh");

/// Fish shell hook template
pub const FISH_TEMPLATE: &str = include_str!("fish.fish");

/// PowerShell hook template
pub const POWERSHELL_TEMPLATE: &str = include_str!("powershell.ps1");