Can export data as ZIP file

This commit is contained in:
2025-05-02 23:24:38 +02:00
parent 1b3ce1a98d
commit f335b9d0c0
6 changed files with 321 additions and 8 deletions

View File

@ -170,6 +170,10 @@ async fn main() -> std::io::Result<()> {
"/api/backup/finances_manager/export",
web::get().to(backup_controller::finances_manager_export),
)
.route(
"/api/backup/zip/export",
web::get().to(backup_controller::zip_export),
)
// Static assets
.route("/", web::get().to(static_controller::root_index))
.route(