summaryrefslogtreecommitdiffstats
path: root/src/app/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/mod.rs')
-rw-r--r--src/app/mod.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/app/mod.rs b/src/app/mod.rs
index bce6e79..2aecb33 100644
--- a/src/app/mod.rs
+++ b/src/app/mod.rs
@@ -5,8 +5,6 @@ use notify::{DebouncedEvent, RecommendedWatcher};
use crate::habit::HabitWrapper;
-use std::sync::{RwLock, Arc};
-
mod impl_self;
mod impl_view;
mod message;
@@ -22,7 +20,7 @@ pub struct App {
file_event_recv: Receiver<DebouncedEvent>,
focus: usize,
view_month_offset: u32,
- pub message: Arc<RwLock<Message>>,
+ message: Message,
}
impl Default for App {