(ctx context.Context, req runtime.LoadTeamRequest)
| 79 | } |
| 80 | |
| 81 | func (b *localBackend) LoadTeam(ctx context.Context, req runtime.LoadTeamRequest) (*teamloader.LoadResult, error) { |
| 82 | return b.flags.loadAgentFrom(ctx, req) |
| 83 | } |
| 84 | |
| 85 | func (b *localBackend) CreateSessionRequest(workingDir string) runtime.CreateSessionRequest { |
| 86 | return b.flags.createSessionRequest(workingDir) |
nothing calls this directly
no test coverage detected