1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
mod base_cursor;
mod cursor;

#[cfg(unix)]
mod ansi_cursor;
#[cfg(windows)]
mod winapi_cursor;

#[cfg(unix)]
use self::ansi_cursor::AnsiCursor;
#[cfg(windows)]
use self::winapi_cursor::WinApiCursor;

pub use self::cursor::{ get, TerminalCursor };