blob: 656828e7b62e8b168ac08ce868bc677f9529801a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#[derive(Debug)]
pub struct FormatterHelper;
impl FormatterHelper {
pub fn format_section(&self, _section: &str, _message: &str, _style: &str) -> String {
todo!()
}
pub fn format_block(&self, _messages: &[&str], _style: &str, _large: bool) -> String {
todo!()
}
}
|