diff options
author | Akshay <[email protected]> | 2020-07-18 16:37:06 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2020-07-18 16:37:06 +0100 |
commit | 6efda9445a89ccbe30aff30f846119129bf3e53c (patch) | |
tree | abf22b8a73e49815d544bfe8f9e25021d1eba649 | |
parent | 0b4af96a515d51c409c6dafef406542dee9da3d4 (diff) |
fix reexports
-rw-r--r-- | src/app/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app/mod.rs b/src/app/mod.rs index f00c936..0886930 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs | |||
@@ -7,8 +7,10 @@ use crate::habit::HabitWrapper; | |||
7 | 7 | ||
8 | mod impl_self; | 8 | mod impl_self; |
9 | mod impl_view; | 9 | mod impl_view; |
10 | mod message; | ||
10 | 11 | ||
11 | pub struct StatusLine(String, String); | 12 | pub struct StatusLine(String, String); |
13 | pub use message::{Message, MessageKind}; | ||
12 | 14 | ||
13 | pub struct App { | 15 | pub struct App { |
14 | // holds app data | 16 | // holds app data |
@@ -18,6 +20,7 @@ pub struct App { | |||
18 | file_event_recv: Receiver<DebouncedEvent>, | 20 | file_event_recv: Receiver<DebouncedEvent>, |
19 | focus: usize, | 21 | focus: usize, |
20 | view_month_offset: u32, | 22 | view_month_offset: u32, |
23 | message: Message, | ||
21 | } | 24 | } |
22 | 25 | ||
23 | impl Default for App { | 26 | impl Default for App { |