summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go')
-rw-r--r--vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go b/vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go
new file mode 100644
index 00000000..324f7e12
--- /dev/null
+++ b/vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go
@@ -0,0 +1,27 @@
+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)
+}