dvb-gse 0.8.0

DVB-GSE (Digital Video Brodcast Generic Stream Encapsulation)
Documentation
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")
}