summaryrefslogtreecommitdiffstats
path: root/src/interactive/mod.rs
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2019-06-06 16:44:47 +0530
committerSebastian Thiel <sthiel@thoughtworks.com>2019-06-06 16:45:01 +0530
commit04f5324b17efe4c7b62a0afc7d2b34304a9a4407 (patch)
treee4aaadfffefd0c0dcb84990c5915a9760edaef95 /src/interactive/mod.rs
parent4cde0f6892f29a16694155ec25d94f4ce3c3d0c9 (diff)
reactor help: move event handling closer to where it belongs
Diffstat (limited to 'src/interactive/mod.rs')
-rw-r--r--src/interactive/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interactive/mod.rs b/src/interactive/mod.rs
index ef02372..0bc81d7 100644
--- a/src/interactive/mod.rs
+++ b/src/interactive/mod.rs
@@ -1,7 +1,9 @@
mod app;
+mod common;
pub mod widgets;
pub use self::app::*;
+pub use common::*;
#[cfg(test)]
mod app_test;