1pub struct SolidityFormatter; 2 3impl SolidityFormatter { 4 pub fn new() -> Self { 5 Self 6 } 7 8 pub fn format(&self, source: &str) -> String { 9 source.to_string() 10 } 11}