2024-05-10 12:25:18 +00:00
|
|
|
//! Read data from a calibre library, leveraging its SQLite metadata database.
|
|
|
|
|
2024-05-01 14:21:07 +00:00
|
|
|
pub mod calibre;
|
2024-05-10 12:25:18 +00:00
|
|
|
/// Data structs for the calibre database.
|
2024-05-01 14:21:07 +00:00
|
|
|
pub mod data {
|
|
|
|
pub mod author;
|
|
|
|
pub mod book;
|
|
|
|
pub mod error;
|
|
|
|
pub mod pagination;
|
2024-05-06 07:09:40 +00:00
|
|
|
pub mod series;
|
2024-05-01 14:21:07 +00:00
|
|
|
}
|