reactive_graph/shared/completions/
error.rs1use clap_complete::Shell;
2use thiserror::Error;
3
4#[derive(Debug, Error)]
5pub enum InstallShellCompletionError {
6 #[error("Failed to get xdg base directory: The shell {0} is not supported")]
7 UnsupportedShell(Shell),
8 #[error("IO Error: {0}")]
9 Io(#[from] std::io::Error),
10}