monitr 0.3.53

A lightweight macOS activity monitor TUI built with Rust and Ratatui
1
2
3
4
5
6
pub type Error = Box<dyn std::error::Error + Send + Sync>;
pub type Result<T> = std::result::Result<T, Error>;

pub fn message(text: impl Into<String>) -> Error {
    std::io::Error::other(text.into()).into()
}