(ctx context.Context, builderId string)
| 1127 | } |
| 1128 | |
| 1129 | func (ws *WshServer) DeleteBuilderCommand(ctx context.Context, builderId string) error { |
| 1130 | if builderId == "" { |
| 1131 | return fmt.Errorf("must provide a builderId to DeleteBuilderCommand") |
| 1132 | } |
| 1133 | buildercontroller.DeleteController(builderId) |
| 1134 | return nil |
| 1135 | } |
| 1136 | |
| 1137 | func (ws *WshServer) StartBuilderCommand(ctx context.Context, data wshrpc.CommandStartBuilderData) error { |
| 1138 | if data.BuilderId == "" { |
nothing calls this directly
no test coverage detected