// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0
#[derive(Debug, thiserror::Error)]
pub enum TuiError {
#[error("terminal I/O error: {0}")]
Io(#[from] std::io::Error),
#[error("channel error: {0}")]
Channel(#[from] zeph_core::channel::ChannelError),
}