diff options
Diffstat (limited to 'remuxer/src/lib.rs')
-rw-r--r-- | remuxer/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs index 88f1916..86ec166 100644 --- a/remuxer/src/lib.rs +++ b/remuxer/src/lib.rs @@ -3,13 +3,13 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2023 metamuffin <metamuffin.org> */ +pub mod extract; pub mod import; pub mod remux; pub mod seek_index; pub mod segment_extractor; pub mod snippet; pub mod trim_writer; -pub mod extract; pub use remux::remux_stream_into; pub use snippet::write_snippet_into; |