8 lines
97 B
Rust
Raw Normal View History

2019-07-11 10:06:07 -07:00
use std::error::Error;
pub type VResult<T> = Result<T, Box<dyn Error>>;
pub trait Visitor {
}