()
| 187 | } |
| 188 | |
| 189 | func (b *remoteBackend) LoadTeamRequest() runtime.LoadTeamRequest { |
| 190 | // The server resolves its own source; ours is intentionally nil. The |
| 191 | // request still carries the user-level overrides so a future server |
| 192 | // can apply them server-side. |
| 193 | return b.flags.loadTeamRequest(nil) |
| 194 | } |
| 195 | |
| 196 | func (b *remoteBackend) LoadTeam(context.Context, runtime.LoadTeamRequest) (*teamloader.LoadResult, error) { |
| 197 | // The server owns the team; no client-side load. Returning a nil |
nothing calls this directly
no test coverage detected