5 lines
119 B
Rust
5 lines
119 B
Rust
use std::error::Error;
|
|
|
|
pub trait Renderer {
|
|
fn render(&self, book: &::book::MDBook) -> Result<(), Box<Error>>;
|
|
}
|