blob: 62991570c774424641993aa5fe8e0ec08b84b1ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#[derive(Debug)]
pub struct OutputFormatterStyle;
impl OutputFormatterStyle {
pub fn new(
_foreground: Option<&str>,
_background: Option<&str>,
_options: Option<Vec<String>>,
) -> Self {
todo!()
}
}
|