use thiserror::Error; #[derive(Debug, Clone, Error)] pub(crate) enum KeycloakdError { #[error("No runtime directory found from dirs::runtime_dir()")] NoRuntimeDir, }