Add export to csv for books

This commit is contained in:
gabatxo1312 2026-01-30 17:06:59 +01:00
commit 60a5bf5583
No known key found for this signature in database
10 changed files with 166 additions and 27 deletions

View file

@ -33,6 +33,14 @@ pub enum AppStateError {
Book {
source: BookError,
},
#[snafu(display("CSV Error"))]
CSV {
source: csv::Error,
},
#[snafu(display("IO Error"))]
IO {
source: std::io::Error,
},
}
#[derive(Template, WebTemplate)]