diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-15 13:17:58 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-15 13:17:58 +0100 |
commit | a0fd6f2943d69d2f3e13fcf80fb567bb821eef9f (patch) | |
tree | ad0cfc71fa1b1a558773686dc93e92f5b546088b /remuxer/src/lib.rs | |
parent | a5ad49451e80cae7ec7f5d2a216084aa30e2e704 (diff) | |
download | jellything-a0fd6f2943d69d2f3e13fcf80fb567bb821eef9f.tar jellything-a0fd6f2943d69d2f3e13fcf80fb567bb821eef9f.tar.bz2 jellything-a0fd6f2943d69d2f3e13fcf80fb567bb821eef9f.tar.zst |
cleanup some old code
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; |