Skip to content

Instantly share code, notes, and snippets.

@SLonger
SLonger / multipart_upload.go
Last active August 3, 2024 16:06 — forked from mattetti/multipart_upload.go
Example of doing a multipart upload in Go (golang) , client create http request instead of html form.
package main
import (
"bytes"
"fmt"
"io"
"log"
"mime/multipart"
"net/http"
"os"