10 lines
153 B
Rust
10 lines
153 B
Rust
|
use crate::{
|
||
|
component::{Component, LineArea, Plan},
|
||
|
theme::ColorSet,
|
||
|
};
|
||
|
|
||
|
pub enum Event {
|
||
|
Link(String),
|
||
|
Input(termion::event::Event),
|
||
|
}
|