minicrossterm/src/error.rs
2021-04-13 08:46:51 +02:00

9 lines
181 B
Rust

//! Module containing error handling logic.
use std::io;
/// The `crossterm` result type.
pub type Result<T> = std::result::Result<T, ErrorKind>;
pub type ErrorKind = io::Error;