(ctx context.Context, appID string)
| 58 | var appIDOverrideKey = "holds a string, being the full app ID" |
| 59 | |
| 60 | func WithAppIDOverride(ctx context.Context, appID string) context.Context { |
| 61 | return context.WithValue(ctx, &appIDOverrideKey, appID) |
| 62 | } |
| 63 | |
| 64 | var apiHostOverrideKey = ctxKey("holds a string, being the alternate API_HOST") |
| 65 |
no outgoing calls
searching dependent graphs…