File Upload Progress display base implementation

This commit is contained in:
Tina_Azure
2023-06-14 18:42:02 +02:00
parent d322905b35
commit 288ab9834a
2 changed files with 46 additions and 2 deletions

View File

@ -1064,8 +1064,7 @@ int main(int argc, char *argv[]) {
});
CROW_ROUTE(app, "/fileuploadtestExecution")
.methods(crow::HTTPMethod::Post)([](const crow::request& postRequest) {
CROW_ROUTE(app, "/fileuploadtestExecution").methods(crow::HTTPMethod::Post)([](const crow::request& postRequest) {
crow::multipart::message multipartMessage(postRequest);
for (const auto& part : multipartMessage.part_map)
{