keyfork/crates/daemon/keyforkd/src/error.rs

8 lines
193 B
Rust

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