1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#![allow(clippy::new_without_default)]
#![allow(clippy::manual_range_contains)]
#![allow(clippy::type_complexity)]

pub mod codec;
pub mod shell;
pub mod util;

mod error;
pub use error::*;

pub use shell::{spawn, Context};