14287: Add include_trash param to GET options.
[arvados.git] / sdk / go / arvados / context.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: Apache-2.0
4
5 package arvados
6
7 import (
8         "context"
9 )
10
11 type contextKey string
12
13 var contextKeyRequestID contextKey = "X-Request-Id"
14
15 func ContextWithRequestID(ctx context.Context, reqid string) context.Context {
16         return context.WithValue(ctx, contextKeyRequestID, reqid)
17 }