DEV Community

Discussion on: How to upload files with Golang and Ajax?

Collapse
 
fattahmuhyiddeen profile image
fattahmuhyiddeen

case "image/jpeg":
saveFile(w, file, handle)
case "image/png":
saveFile(w, file, handle)

can be ->

case "image/jpeg", "image/png":
saveFile(w, file, handle)