Этот коммит содержится в:
Christopher Speller
2016-05-12 23:56:07 -04:00
родитель 84d2482ddb
Коммит 38ee83e45b
1099 изменённых файлов: 277713 добавлений и 4019 удалений

37
vendor/github.com/mattermost/rsc/cmd/jfmt/main.go сгенерированный поставляемый Обычный файл
Просмотреть файл

@@ -0,0 +1,37 @@
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// jfmt reads JSON from standard input, formats it, and writes it to standard output.
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"os"
)
func main() {
log.SetFlags(0)
if len(os.Args) > 1 {
fmt.Fprintf(os.Stderr, "usage: json < input > output\n")
os.Exit(2)
}
// TODO: Can do on the fly.
data, err := ioutil.ReadAll(os.Stdin)
if err != nil {
log.Fatal(err)
}
var buf bytes.Buffer
json.Indent(&buf, data, "", " ")
buf.WriteByte('\n')
os.Stdout.Write(buf.Bytes())
}