blob: ae71007c18b912adb6cf0207f640f57d766fa6a7 [file] [log] [blame]
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001// 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 protojson marshals and unmarshals protocol buffer messages as JSON
6// format. It follows the guide at
Akash Reddy Kankanalac0014632025-05-21 17:12:20 +05307// https://protobuf.dev/programming-guides/proto3#json.
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00008//
balaji.nagarajan8a2a7ee2026-06-19 22:31:13 +05309// This package produces a different output than the standard [encoding/json]
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000010// package, which does not operate correctly on protocol buffer messages.
11package protojson