1#![feature(slice_internals)]
2
3mod encoding;
4mod error;
5mod options;
6mod shell;
7mod stdout_reader;
8
9pub use encoding::*;
10pub use error::*;
11pub use options::*;
12pub use shell::*;
13pub(crate) use stdout_reader::*;
14
15pub type Result<T> = std::result::Result<T, Error>;