(ctx context.Context, id string)
| 345 | } |
| 346 | |
| 347 | func (c *controllerLocal) getSandbox(ctx context.Context, id string) (runtimeAPI.TTRPCSandboxService, error) { |
| 348 | shim, err := c.shims.Get(ctx, id) |
| 349 | if err != nil { |
| 350 | return nil, err |
| 351 | } |
| 352 | |
| 353 | return sandbox.NewClient(shim.Client()) |
| 354 | } |