(ctx context.Context, data wshrpc.CommandControllerResyncData)
| 312 | } |
| 313 | |
| 314 | func (ws *WshServer) ControllerResyncCommand(ctx context.Context, data wshrpc.CommandControllerResyncData) error { |
| 315 | ctx = genconn.ContextWithConnData(ctx, data.BlockId) |
| 316 | ctx = termCtxWithLogBlockId(ctx, data.BlockId) |
| 317 | return blockcontroller.ResyncController(ctx, data.TabId, data.BlockId, data.RtOpts, data.ForceRestart) |
| 318 | } |
| 319 | |
| 320 | func (ws *WshServer) ControllerInputCommand(ctx context.Context, data wshrpc.CommandBlockInputData) error { |
| 321 | inputUnion := &blockcontroller.BlockInputUnion{ |
nothing calls this directly
no test coverage detected