aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/src/errors/io_error.rs
blob: 97509c9d229fed488cd6a5fa8860cdc67c217ebe (plain) (blame)
1
2
3
4
5
6
7
8
use mingling::macros::{group, renderer};

group!(ErrorIo = std::io::Error);

#[renderer]
pub fn handle_error_io(err: ErrorIo) {
    panic!("{}", err.to_string())
}