1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! This is documentation for the `console_tester` crate.
//!
//! Console Tester will get fed in strings and will parse the strings and return a result in what makes sense.

#![crate_type = "lib"]
#![crate_name = "console_tester"]

// Internal Exposure
mod reg;

// Public Exposure
pub mod buffer;
pub mod term;