()
| 99 | } |
| 100 | |
| 101 | pub fn dialoguer_theme() -> ColorfulTheme { |
| 102 | ColorfulTheme { |
| 103 | prompt_prefix: dialoguer::console::style("?".into()).for_stderr().magenta(), |
| 104 | ..ColorfulTheme::default() |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | /// A writer that discards all data written to it. |
| 109 | pub struct NullWriter; |
no outgoing calls
no test coverage detected