blob: eb19ea7e6a6f816cb2aa50b4346c2e90c0d20305 (
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!()
}
}
|