#![doc = include_str!("readme.md")]
use crate::language::SqlLanguage;
pub struct SqlFormatter<'config> {
config: &'config SqlLanguage,
}
impl<'config> SqlFormatter<'config> {
pub fn new(config: &'config SqlLanguage) -> Self {
Self { config }
}
pub fn format(&self, _node: &oak_core::tree::RedNode<SqlLanguage>) -> String {
String::new()
}
}