1
2
3
4
5
use std::{path::PathBuf, sync::Arc};

pub trait IncludeAdaptor {
    fn include(&mut self, path: PathBuf) -> Option<Arc<Vec<u8>>>;
}