doc.go 514 B

1234567891011
  1. // Copyright 2019 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Package protojson marshals and unmarshals protocol buffer messages as JSON
  5. // format. It follows the guide at
  6. // https://developers.google.com/protocol-buffers/docs/proto3#json.
  7. //
  8. // This package produces a different output than the standard "encoding/json"
  9. // package, which does not operate correctly on protocol buffer messages.
  10. package protojson