1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2025-05-24 13:52:30 +00:00

2015-devnation: copying devconf talk

This commit is contained in:
Vincent Batts 2015-06-11 18:28:27 -04:00
parent 5149d7ec5e
commit 65363d37c3
18 changed files with 482 additions and 0 deletions

View file

@ -0,0 +1,48 @@
// +build ignore
package main
import (
"compress/gzip"
"encoding/json"
"flag"
"io/ioutil"
"log"
"os"
)
func main() {
for _, arg := range flag.Args() {
func() {
// START1 OMIT
fh, err := os.Open(arg)
if err != nil {
log.Fatal(err)
}
defer fh.Close()
gz, err := gzip.NewReader(fh)
if err != nil {
log.Fatal(err)
}
defer gz.Close()
buf, err := ioutil.ReadAll(gz)
if err != nil {
log.Fatal(err)
}
var mine MyStruct
err = json.Unmarshal(&mine)
if err != nil {
log.Fatal(err)
}
// STOP1 OMIT
}()
}
}
type MyStruct struct {
}