mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-12 05:06:29 +00:00
10 lines
191 B
Rust
10 lines
191 B
Rust
|
#[cfg(not(feature = "clap"))]
|
||
|
mod default_args;
|
||
|
#[cfg(not(feature = "clap"))]
|
||
|
pub use default_args::*;
|
||
|
|
||
|
#[cfg(feature = "clap")]
|
||
|
mod clap_args;
|
||
|
#[cfg(feature = "clap")]
|
||
|
pub use clap_args::*;
|