2018-07-27 22:11:44 +01:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package statdb
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
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
|