1//! Decoding and Encoding of WebP Images
2
3mod decoder;
4mod encoder;
5
6pub use self::decoder::WebPDecoder;
7pub use self::encoder::WebPEncoder;
8