mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 04:17:44 +08:00
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
// Code generated by protoc-gen-gogo.
|
|
// source: semver.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package version is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
semver.proto
|
|
|
|
It has these top-level messages:
|
|
SemVer
|
|
*/
|
|
package version
|
|
|
|
import proto "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/gogoprotobuf/proto"
|
|
import math "math"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = math.Inf
|
|
|
|
type SemVer struct {
|
|
Major *int64 `protobuf:"varint,1,opt,name=major" json:"major,omitempty"`
|
|
Minor *int64 `protobuf:"varint,2,opt,name=minor" json:"minor,omitempty"`
|
|
Patch *int64 `protobuf:"varint,3,opt,name=patch" json:"patch,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *SemVer) Reset() { *m = SemVer{} }
|
|
func (m *SemVer) String() string { return proto.CompactTextString(m) }
|
|
func (*SemVer) ProtoMessage() {}
|
|
|
|
func (m *SemVer) GetMajor() int64 {
|
|
if m != nil && m.Major != nil {
|
|
return *m.Major
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SemVer) GetMinor() int64 {
|
|
if m != nil && m.Minor != nil {
|
|
return *m.Minor
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SemVer) GetPatch() int64 {
|
|
if m != nil && m.Patch != nil {
|
|
return *m.Patch
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func init() {
|
|
}
|