ajustando ASP com Flask

This commit is contained in:
2023-09-24 10:56:01 -03:00
parent 125b456743
commit f0fa227035
10 changed files with 80 additions and 93 deletions

View File

@@ -50,6 +50,8 @@ namespace TCC.Controllers
MemoryStream mstream = new MemoryStream();
await HttpContext.Request.Body.CopyToAsync(mstream);
mstream.Position = 0;
ImageService.SaveImage(mstream);
mstream.Close();
return Ok();