aboutsummaryrefslogtreecommitdiff
path: root/runtime/protoiface/legacy.go
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/protoiface/legacy.go')
-rw-r--r--runtime/protoiface/legacy.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/protoiface/legacy.go b/runtime/protoiface/legacy.go
new file mode 100644
index 00000000..c5872767
--- /dev/null
+++ b/runtime/protoiface/legacy.go
@@ -0,0 +1,15 @@
+// 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 protoiface
+
+type MessageV1 interface {
+ Reset()
+ String() string
+ ProtoMessage()
+}
+
+type ExtensionRangeV1 struct {
+ Start, End int32 // both inclusive
+}