little-hesinde/calibre-db/src/lib.rs
Sebastian Hugentobler 55d3364b0e
All checks were successful
Build Multiarch Container Image / call-reusable-workflow (push) Successful in 27m24s
implement html & opds search
2024-06-26 13:53:00 +02:00

14 lines
275 B
Rust

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