1 2 3 4 5 6 7 8 9
#[cfg(feature = "cli")] fn main() -> anyhow::Result<()> { dvb_gse::cli::main() } #[cfg(not(feature = "cli"))] fn main() -> Result<(), &'static str> { Err("The CLI application needs to be built with the 'cli' flag enabled") }