little-hesinde/calibre-db/src/lib.rs

12 lines
258 B
Rust

//! Read data from a calibre library, leveraging its SQLite metadata database.
pub mod calibre;
/// Data structs for the calibre database.
pub mod data {
pub mod author;
pub mod book;
pub mod error;
pub mod pagination;
pub mod series;
}