The ListStore type should not be public (anymore)

This commit is contained in:
Paul van Tilburg 2018-01-01 21:44:54 +01:00
parent 889351df24
commit 1af5fe027f
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ mod models;
use rocket::Rocket;
use std::sync::RwLock;
pub type ListStore = RwLock<Vec<models::list::List>>;
type ListStore = RwLock<Vec<models::list::List>>;
fn rocket(lists_path: Option<&str>) -> Rocket {
let lists = models::list::List::load_all(lists_path);