keyfork/keyforkd/src/error.rs

8 lines
175 B
Rust
Raw Normal View History

2023-08-25 06:32:21 +00:00
use thiserror::Error;
#[derive(Debug, Clone, Error)]
pub(crate) enum KeycloakdError {
#[error("No runtime directory found from dirs::runtime_dir()")]
NoRuntimeDir,
}