use thiserror::Error;
#[derive(Debug, Clone, Error)]
pub(crate) enum KeyforkdError {
#[error("Neither KEYFORKD_SOCKET_PATH nor XDG_RUNTIME_DIR were set, nowhere to mount socket")]
NoSocketPath,
}