Files
gitnow/crates/gitnow/src/commands/shell/zsh.rs
kjuulh f0f81f8a0b
All checks were successful
continuous-integration/drone/push Build is passing
feat: add errout for interactive for script support and atty for clean output
2024-09-23 21:35:10 +02:00

13 lines
249 B
Rust

#[derive(clap::Parser)]
pub struct ZshShell {}
const SCRIPT: &str = include_str!("../../../include/shell/zsh.sh");
impl ZshShell {
pub async fn execute(&mut self) -> anyhow::Result<()> {
println!("{}", SCRIPT);
Ok(())
}
}