DestinationList is a list wrapper for Destination resources. Implementations should embed `core_model.ResourceList` and provide items via `GetDestinations`. All items must be the same destination kind, for example all MeshService or all MeshExternalService. The order should be stable for a single re
| 33 | // destination kind, for example all MeshService or all MeshExternalService. The order should |
| 34 | // be stable for a single read to make indexing and hashing predictable |
| 35 | type DestinationList interface { |
| 36 | core_model.ResourceList |
| 37 | // GetDestinations returns all Destination resources in the list. |
| 38 | GetDestinations() []Destination |
| 39 | } |
no outgoing calls
no test coverage detected