storj/pkg/rpc/common_drpc.go

15 lines
236 B
Go
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
2019-11-01 21:43:24 +00:00
// +build !grpc
package rpc
const (
// IsDRPC is true if drpc is being used.
IsDRPC = true
// IsGRPC is true if grpc is being used.
IsGRPC = false
)