Skip to main content

daemon8_ingest/
error.rs

1// SPDX-License-Identifier: LicenseRef-FCL-1.0-ALv2
2// Copyright (c) 2026 Havy.tech, LLC
3
4use thiserror::Error;
5
6#[derive(Debug, Error)]
7pub enum IngestError {
8    #[error("bind failed: {0}")]
9    Bind(#[from] std::io::Error),
10}
11
12pub type Result<T> = std::result::Result<T, IngestError>;