mirror of
https://github.com/vbatts/talks.git
synced 2025-05-29 16:22:27 +00:00
flatten folder
This commit is contained in:
parent
5783dd7f09
commit
ffd598d420
12 changed files with 15 additions and 12 deletions
48
2015/02-devconf.cz/good0.go
Normal file
48
2015/02-devconf.cz/good0.go
Normal 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 {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue