(dataSources []*v1pb.DataSource, id string)
| 264 | } |
| 265 | |
| 266 | func findDataSource(dataSources []*v1pb.DataSource, id string) *v1pb.DataSource { |
| 267 | for _, dataSource := range dataSources { |
| 268 | if dataSource.Id == id { |
| 269 | return dataSource |
| 270 | } |
| 271 | } |
| 272 | return nil |
| 273 | } |
no outgoing calls
no test coverage detected