1use crate::runner::Runner; 2 3#[macro_use] 4pub mod macros; 5 6pub trait Module<'a, R: Runner<'a>> { 7 fn new(runner: &'a R) -> Self; 8}