(ctx context.Context)
| 1524 | } |
| 1525 | |
| 1526 | func (ws *WshServer) JobControllerListCommand(ctx context.Context) ([]*waveobj.Job, error) { |
| 1527 | return wstore.DBGetAllObjsByType[*waveobj.Job](ctx, waveobj.OType_Job) |
| 1528 | } |
| 1529 | |
| 1530 | func (ws *WshServer) JobControllerDeleteJobCommand(ctx context.Context, jobId string) error { |
| 1531 | return jobcontroller.DeleteJob(ctx, jobId) |
nothing calls this directly
no test coverage detected