Display the list of ISO files

This commit is contained in:
2023-09-06 14:21:26 +02:00
parent e7d5747b99
commit 08b59b6f67
6 changed files with 152 additions and 7 deletions

View File

@ -108,6 +108,7 @@ async fn main() -> std::io::Result<()> {
"/api/iso/upload_from_url",
web::post().to(iso_controller::upload_from_url),
)
.route("/api/iso/list", web::get().to(iso_controller::get_list))
})
.bind(&AppConfig::get().listen_address)?
.run()