mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 08:40:29 +00:00
28 lines
586 B
Go
28 lines
586 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"github.com/technoweenie/multipartstreamer"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
func main() {
|
|
defaultPath, _ := os.Getwd()
|
|
defaultFile := filepath.Join(defaultPath, "streamer.go")
|
|
fullpath := flag.String("path", defaultFile, "Path to the include in the multipart data.")
|
|
flag.Parse()
|
|
|
|
ms := multipartstreamer.New()
|
|
|
|
fmt.Println("Adding the file to the multipart writer")
|
|
ms.WriteFile("file", *fullpath)
|
|
reader := ms.GetReader()
|
|
|
|
fmt.Println("Writing the multipart data to a file")
|
|
file, _ := os.Create("streamtest")
|
|
io.Copy(file, reader)
|
|
}
|