1
2
3
4
5
use std::error::Error;

pub trait Renderer {
    fn render(&self, book: &::book::MDBook) ->  Result<(), Box<Error>>;
}