2019-01-18 01:50:10 +00:00
|
|
|
// 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.
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
package protoiface
|
2019-01-18 01:50:10 +00:00
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
type MessageV1 interface {
|
|
|
|
Reset()
|
|
|
|
String() string
|
|
|
|
ProtoMessage()
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
type ExtensionRangeV1 struct {
|
|
|
|
Start, End int32 // both inclusive
|
|
|
|
}
|