2023-08-25 06:32:21 +00:00
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Error)]
|
2023-09-01 04:10:56 +00:00
|
|
|
pub(crate) enum KeyforkdError {
|
|
|
|
#[error("Neither KEYFORKD_SOCKET_PATH nor XDG_RUNTIME_DIR were set, nowhere to mount socket")]
|
|
|
|
NoSocketPath,
|
2023-08-25 06:32:21 +00:00
|
|
|
}
|