(dag *graph.DAG, obj client.Object, opts ...GraphOption)
| 113 | } |
| 114 | |
| 115 | func (r *realGraphClient) Delete(dag *graph.DAG, obj client.Object, opts ...GraphOption) { |
| 116 | r.doWrite(dag, nil, obj, ActionDeletePtr(), opts...) |
| 117 | } |
| 118 | |
| 119 | func (r *realGraphClient) Status(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption) { |
| 120 | r.doWrite(dag, objOld, objNew, ActionStatusPtr(), opts...) |
nothing calls this directly
no test coverage detected