15 lines
235 B
Go
15 lines
235 B
Go
|
// Copyright (C) 2019 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
// +build drpc
|
||
|
|
||
|
package rpc
|
||
|
|
||
|
const (
|
||
|
// IsDRPC is true if drpc is being used.
|
||
|
IsDRPC = true
|
||
|
|
||
|
// IsGRPC is true if grpc is being used.
|
||
|
IsGRPC = false
|
||
|
)
|