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
18 lines
571 B
Go
18 lines
571 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package pb
|
|
|
|
import "storj.io/storj/pkg/storj"
|
|
|
|
// Path represents a object path
|
|
type Path = storj.Path
|
|
|
|
// 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
|
|
|
|
//go:generate protoc -I. --gogo_out=plugins=grpc:. meta.proto overlay.proto pointerdb.proto piecestore.proto bandwidth.proto inspector.proto datarepair.proto node.proto
|