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

@ -178,6 +178,10 @@ async fn main() -> std::io::Result<()> {
"/api/backup/zip/import",
web::post().to(backup_controller::zip_import),
)
.route(
"/api/backup/xslx/export",
web::get().to(backup_controller::xslx_export),
)
// Static assets
.route("/", web::get().to(static_controller::root_index))
.route(