#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
pub mod bufio;
pub mod bytes;
pub mod chan;
pub mod context;
pub mod defer;
pub mod errors;
pub mod filepath;
pub mod fmt;
pub mod goroutine;
pub mod io;
pub mod log;
pub mod math;
pub mod os;
pub mod range;
pub mod sort;
pub mod strconv;
pub mod strings;
pub mod sync;
pub mod time;
pub mod types;
pub use crate::types::*;
pub mod prelude {
pub use crate::bufio;
pub use crate::bytes;
pub use crate::chan::Chan;
pub use crate::context;
pub use crate::errors::{self, error, nil};
pub use crate::filepath;
pub use crate::fmt;
pub use crate::io;
pub use crate::log;
pub use crate::math;
pub use crate::os;
pub use crate::sort;
pub use crate::strconv;
pub use crate::strings;
pub use crate::sync;
pub use crate::time;
pub use crate::types::*;
pub use crate::goroutine::Goroutine;
pub use crate::{
Errorf, Fprintf, Printf, Println, Sprintf,
append, chan, defer, delete, go, len, make, map, range, slice, stringer,
};
}