2022-04-03 04:07:16 +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.
|
|
|
|
|
2022-08-06 14:21:18 +00:00
|
|
|
package protoiface
|
2022-04-03 04:07:16 +00:00
|
|
|
|
2022-08-06 14:21:18 +00:00
|
|
|
type MessageV1 interface {
|
|
|
|
Reset()
|
|
|
|
String() string
|
|
|
|
ProtoMessage()
|
|
|
|
}
|
2022-04-03 04:07:16 +00:00
|
|
|
|
2022-08-06 14:21:18 +00:00
|
|
|
type ExtensionRangeV1 struct {
|
|
|
|
Start, End int32 // both inclusive
|
2022-04-03 04:07:16 +00:00
|
|
|
}
|