oi_unwrap/
lib.rs

1#[macro_export]
2macro_rules! oi {
3    ($option:ident) => {
4        let $option = $option.unwrap();
5    };
6}