#![doc = include_str!("readme.md")]
use oak_pretty_print::Document;
#[allow(dead_code)]
pub trait Formatter {
fn format(&self, code: &str) -> Document<'_>;
}
pub struct GoFormatter;
impl GoFormatter {
pub fn new() -> Self {
Self
}
}
impl Formatter for GoFormatter {
fn format(&self, _text: &str) -> Document<'_> {
Document::Nil
}
}