1
 2
 3
 4
 5
 6
 7
 8
 9
10
extern crate rusqlite;
extern crate csv;

pub mod data;
pub mod recommender;
pub mod sparse;
pub mod similarity;

/// Type for the user and item ids
pub type ID = usize;