1
2
3
4
5
6
7
8
9
10
11
12
13
// Take a look at the license at the top of the repository in the LICENSE file.

#![allow(clippy::cast_ptr_alignment)]

mod formatter;

pub mod prelude {
    #[doc(hidden)]
    pub use glib::subclass::prelude::*;
    pub use gst::subclass::prelude::*;

    pub use super::formatter::{FormatterImpl, FormatterImplExt};
}