From 1af5fe027f0e983f59b2c161ded5c82e5c5f2d76 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Mon, 1 Jan 2018 21:44:54 +0100 Subject: [PATCH] The ListStore type should not be public (anymore) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);