(ctx context.Context)
| 33 | } |
| 34 | |
| 35 | func ExecutorPath(ctx context.Context) string { |
| 36 | v, ok := ctx.Value(executorPathCtxKey).(string) |
| 37 | if !ok { |
| 38 | return "" |
| 39 | } |
| 40 | return v |
| 41 | } |
| 42 | |
| 43 | func ExecutorDepth(ctx context.Context) int { |
| 44 | v, ok := ctx.Value(executorDepthCtxKey).(int) |