(ctx context.Context, fetched bool)
| 85 | } |
| 86 | |
| 87 | func SetInstanceTokenFetched(ctx context.Context, fetched bool) context.Context { |
| 88 | return context.WithValue(ctx, instanceTokenFetched, fetched) |
| 89 | } |
| 90 | |
| 91 | func InstanceTokenFetched(ctx context.Context) bool { |
| 92 | elem := ctx.Value(instanceTokenFetched) |
no outgoing calls