Add basic Excel export

This commit is contained in:
2025-05-05 22:29:45 +02:00
parent 485fe6ae53
commit b16a716c6c
8 changed files with 128 additions and 1 deletions

View File

@ -38,6 +38,8 @@ pub enum HttpFailure {
StdIoError(#[from] std::io::Error),
#[error("an error occurred while performing backup/recovery operation: {0}")]
BackupControllerError(#[from] BackupControllerError),
#[error("an error while encoding Excel document: {0}")]
XslxError(#[from] rust_xlsxwriter::XlsxError),
}
impl ResponseError for HttpFailure {