(ctx context.Context, blockId string)
| 307 | } |
| 308 | |
| 309 | func (ws *WshServer) ControllerDestroyCommand(ctx context.Context, blockId string) error { |
| 310 | blockcontroller.DestroyBlockController(blockId) |
| 311 | return nil |
| 312 | } |
| 313 | |
| 314 | func (ws *WshServer) ControllerResyncCommand(ctx context.Context, data wshrpc.CommandControllerResyncData) error { |
| 315 | ctx = genconn.ContextWithConnData(ctx, data.BlockId) |
nothing calls this directly
no test coverage detected