librashader/librashader-runtime-vk/src/error.rs
2022-12-21 21:39:31 -05:00

4 lines
85 B
Rust

use std::error::Error;
pub type Result<T> = std::result::Result<T, Box<dyn Error>>;