(name string)
| 325 | } |
| 326 | |
| 327 | func graphCompleteResource(name string) []*proto.Response { |
| 328 | return []*proto.Response{{ |
| 329 | Type: &proto.Response_Graph{ |
| 330 | Graph: &proto.GraphComplete{ |
| 331 | Resources: []*proto.Resource{{ |
| 332 | Name: name, |
| 333 | }}, |
| 334 | }, |
| 335 | }, |
| 336 | }} |
| 337 | } |