1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
extern crate lazy_static;

#[cfg(windows)]
extern crate winapi;

#[cfg(unix)]
extern crate libc;

mod backend;
mod style;
mod terminal;
mod terminal_backend;
mod os;
mod key;

pub use terminal::{
    terminal,
    Terminal,
};

pub use style::{
    Color,
    Style,
};

pub use key::Key;