use super::shell::Shell;
use std::path::Path;
#[derive(Debug)]
pub struct WindowsCmd;
impl Shell for WindowsCmd {
fn to_clap_shell(&self) -> clap_complete::Shell {
panic!("Shell completion is not supported for Windows Command Prompt. Maybe try using PowerShell for a better experience?");
}
}