diff --git a/src/main.rs b/src/main.rs index a819b9c..c26f10c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,7 +15,7 @@ mod models; use rocket::Rocket; use std::sync::RwLock; -pub type ListStore = RwLock>; +type ListStore = RwLock>; fn rocket(lists_path: Option<&str>) -> Rocket { let lists = models::list::List::load_all(lists_path);