1#![doc = include_str!("readme.md")] 2pub struct RFormatter {} 3 4impl RFormatter { 5 pub fn new() -> Self { 6 Self {} 7 } 8 9 pub fn format(&self, source: &str) -> String { 10 source.to_string() 11 } 12}