()
| 1 | #[cfg(not(feature = "cli"))] |
| 2 | fn main() { |
| 3 | eprintln!("`css-inline` CLI is only available with the `cli` feature"); |
| 4 | std::process::exit(1); |
| 5 | } |
| 6 | |
| 7 | #[cfg(feature = "cli")] |
| 8 | fn main() -> Result<(), Box<dyn std::error::Error>> { |
nothing calls this directly
no test coverage detected