Skip to content

Commit

Permalink
Remove pub from top level mod declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgruner committed Oct 28, 2021
1 parent eb2bb28 commit 10e711d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
#![allow(dead_code)]

mod device_provider;
pub mod ndi;
mod ndi;

#[cfg(feature = "sink-v1_14")]
#[path = "base/mod.rs"]
pub mod gst_base_compat;
mod gst_base_compat;

#[cfg(any(feature = "sink", feature = "sink-v1_14"))]
mod ndisink;
#[cfg(any(feature = "sink", feature = "sink-v1_14"))]
mod ndisinkcombiner;
#[cfg(any(feature = "sink", feature = "sink-v1_14"))]
pub mod ndisinkmeta;
mod ndisinkmeta;
mod ndisrc;
mod ndisrcdemux;
pub mod ndisrcmeta;
pub mod ndisys;
pub mod receiver;
mod ndisrcmeta;
mod ndisys;
mod receiver;

use crate::ndi::*;
use crate::ndisys::*;
Expand Down

0 comments on commit 10e711d

Please sign in to comment.