blob: 22ac0135228e319eed1931b1ffb5fe769ed6061e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#[derive(Debug)]
pub struct TableSeparator;
impl Default for TableSeparator {
fn default() -> Self {
Self::new()
}
}
impl TableSeparator {
pub fn new() -> Self {
todo!()
}
}
|