(title: &str, shared: &cli::SharedArgs)
| 106 | } |
| 107 | |
| 108 | fn print_box_title(title: &str, shared: &cli::SharedArgs) { |
| 109 | ccusage_terminal::print_box_title(title, terminal_style(shared)); |
| 110 | } |
| 111 | |
| 112 | trait Context<T> { |
| 113 | fn context(self, message: impl Into<String>) -> Result<T>; |
no test coverage detected