blob: 99cf2dd693c9ce4cd728d3d44583b566f7e8cd8b [file] [log] [blame]
Herbie Ongc96a79d2019-03-08 10:49:17 -08001// 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
5// Package jsonpb marshals and unmarshals protocol buffer messages as JSON
6// format. It follows the guide at
7// https://developers.google.com/protocol-buffers/docs/proto3#json.
8//
9// This package produces a different output than the standard "encoding/json"
10// package, which does not operate correctly on protocol buffer messages.
11package jsonpb