Skip to main content

mockforge_registry_server/
error.rs

1//! Error types for the registry server.
2//!
3//! The actual definitions now live in `mockforge_registry_core::error` so
4//! that both the SaaS binary and the OSS admin UI share the same `ApiError`
5//! / `StoreError` types and the same `IntoResponse` implementation.
6//!
7//! This module re-exports those types under the old `crate::error::*` path
8//! so existing handler and middleware imports continue to work.
9
10pub use mockforge_registry_core::error::{ApiError, ApiResult, StoreError, StoreResult};