github.com/blend/go-sdk@v1.20220411.3/grpcutil/constants.go (about) 1 /* 2 3 Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved 4 Use of this source code is governed by a MIT license that can be found in the LICENSE file. 5 6 */ 7 8 package grpcutil 9 10 // MetaTags 11 // These are common tags found in the metadata for rpc calls, both unary and streaming. 12 const ( 13 MetaTagAuthority = "authority" 14 MetaTagContentType = "content-type" 15 MetaTagUserAgent = "user-agent" 16 ) 17 18 // Our default engine 19 const ( 20 EngineGRPC = "grpc" 21 )