1
2
3
4
5
6
7
8
9
10
11
12
//! Schemas and processing logic for GoodReads data.
//!
//! This module contains the code for processing GoodReads data from the UCSD Book Graph.
//! The data layout is documented at <https://bookdata.piret.info/data/goodreads.html>.
pub mod author;
pub mod book;
pub mod genres;
pub mod ids;
pub mod interaction;
pub mod review;
pub mod users;
pub mod work;