mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2024-12-28 18:25:46 +00:00
e815d6a43b
Change-Id: I1344d6afca9d3348db849c2b5f387ac18b80d2ba Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/189021 Reviewed-by: Damien Neil <dneil@google.com>
13 lines
351 B
Go
13 lines
351 B
Go
// Copyright 2018 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.
|
|
|
|
package proto
|
|
|
|
import (
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
|
)
|
|
|
|
// Message is the top-level interface that all messages must implement.
|
|
type Message = protoreflect.ProtoMessage
|