diff options
Diffstat (limited to 'matroska/src/lib.rs')
-rw-r--r-- | matroska/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/matroska/src/lib.rs b/matroska/src/lib.rs index b86af44..b2d052c 100644 --- a/matroska/src/lib.rs +++ b/matroska/src/lib.rs @@ -4,6 +4,7 @@ Copyright (C) 2023 metamuffin <metamuffin.org> */ pub mod block; +pub mod error; pub mod matroska; pub mod read; pub mod size; @@ -20,3 +21,6 @@ pub enum Master { Start, End, } + +pub(crate) use error::Error; +pub(crate) type Result<T> = core::result::Result<T, Error>; |