summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-11-20 17:02:17 +0100
committerWim <wim@42.be>2016-11-20 17:02:17 +0100
commit94ea775232eabfd3945ef9b5d6e93e3505fd4a99 (patch)
tree9930dd9d68cee5e7b8153d3e3345539f21fe1fbe /vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go
parent449ed31e25f2c21ac9db258999a5a893889983eb (diff)
parent2e4b7fac1146c186f28599d62379d7e9912fda81 (diff)
downloadmatterbridge-msglm-94ea775232eabfd3945ef9b5d6e93e3505fd4a99.tar.gz
matterbridge-msglm-94ea775232eabfd3945ef9b5d6e93e3505fd4a99.tar.bz2
matterbridge-msglm-94ea775232eabfd3945ef9b5d6e93e3505fd4a99.zip
Merge branch 'telegram'
Add telegram support
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)
+}