(ctx context.Context, projectId string)
| 45 | } |
| 46 | |
| 47 | func SetProjectID(ctx context.Context, projectId string) context.Context { |
| 48 | return Set(ctx, projectIdKey, projectId) |
| 49 | } |
| 50 | |
| 51 | func GetProjectID(ctx context.Context) (string, error) { |
| 52 | v, ok := Get[string](ctx, projectIdKey) |