(dag *graph.DAG, obj client.Object, opts ...GraphOption)
| 101 | } |
| 102 | |
| 103 | func (r *realGraphClient) Create(dag *graph.DAG, obj client.Object, opts ...GraphOption) { |
| 104 | r.doWrite(dag, nil, obj, ActionCreatePtr(), opts...) |
| 105 | } |
| 106 | |
| 107 | func (r *realGraphClient) Update(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption) { |
| 108 | r.doWrite(dag, objOld, objNew, ActionUpdatePtr(), opts...) |
nothing calls this directly
no test coverage detected