зеркало из
https://github.com/glebtv/tui-textarea.git
synced 2026-08-28 11:36:17 +03:00
11 строки
176 B
Rust
11 строки
176 B
Rust
#![allow(clippy::needless_range_loop)]
|
|
|
|
mod cursor;
|
|
mod history;
|
|
mod input;
|
|
mod textarea;
|
|
|
|
pub use cursor::CursorMove;
|
|
pub use input::{Input, Key};
|
|
pub use textarea::TextArea;
|