summaryrefslogtreecommitdiffstats
path: root/src/display/components/mod.rs
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2020-01-13 17:49:04 +0100
committerGitHub <noreply@github.com>2020-01-13 17:49:04 +0100
commit463ec9bcb84842955d9ba48af47c9bba6670d670 (patch)
tree9a2e60e2f2934bc77e1f8d6b626b36ede22cd17f /src/display/components/mod.rs
parentda91443d660106b61d6e712f83d97407f5bf2347 (diff)
feat(helptext): communicate pause/resume to the user (#111)
* feat(helptext): communicate pause/resume to the user * style(format): rustfmt
Diffstat (limited to 'src/display/components/mod.rs')
-rw-r--r--src/display/components/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/display/components/mod.rs b/src/display/components/mod.rs
index a0e226d..c99596c 100644
--- a/src/display/components/mod.rs
+++ b/src/display/components/mod.rs
@@ -1,9 +1,11 @@
mod display_bandwidth;
+mod help_text;
mod layout;
mod table;
mod total_bandwidth;
pub use display_bandwidth::*;
+pub use help_text::*;
pub use layout::*;
pub use table::*;
pub use total_bandwidth::*;