1 2 3 4 5 6 7 8 9 10 11
use std::path::Path; use anyhow::Result; pub(crate) mod portable; pub trait Renderer { fn render_tables<P>(&self, path: P, webview_host: &str, debug: bool) -> Result<()> where P: AsRef<Path>; }