storj/pkg/rpc/common_grpc.go
2019-11-01 22:43:24 +01:00

15 lines
235 B
Go

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