2a0c4e60d2
* preparing for use of `customtype` gogo extension with `NodeID` type * review changes * preparing for use of `customtype` gogo extension with `NodeID` type * review changes * wip * tests passing * wip fixing tests * more wip test fixing * remove NodeIDList from proto files * linter fixes * linter fixes * linter/review fixes * more freaking linter fixes * omg just kill me - linterrrrrrrr * travis linter, i will muder you and your family in your sleep * goimports everything - burn in hell travis * goimports update * go mod tidy
24 lines
681 B
Go
24 lines
681 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package statdb
|
|
|
|
import (
|
|
"storj.io/storj/pkg/pb"
|
|
"storj.io/storj/pkg/storj"
|
|
)
|
|
|
|
// NodeID is an alias to storj.NodeID for use in generated protobuf code
|
|
type NodeID = storj.NodeID
|
|
|
|
// NodeIDList is an alias to storj.NodeIDList for use in generated protobuf code
|
|
type NodeIDList = storj.NodeIDList
|
|
|
|
// Node is an alias to storj.Node for use in generated protobuf code
|
|
type Node = pb.Node
|
|
|
|
// NodeStats is an alias to storj.NodeStats for use in generated protobuf code
|
|
type NodeStats = pb.NodeStats
|
|
|
|
//go:generate protoc --gogo_out=plugins=grpc:. -I=. -I=$GOPATH/src/storj.io/storj/pkg/pb statdb.proto
|