| // Copyright 2022 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| { | |
| include: [ | |
| "inspect/offer.shard.cml", | |
| "syslog/offer.shard.cml", | |
| ], | |
| children: [ | |
| { | |
| name: "echo_server", | |
| url: "#meta/echo_server.cm", | |
| }, | |
| { | |
| name: "echo_client", | |
| url: "#meta/echo_client.cm", | |
| }, | |
| ], | |
| offer: [ | |
| { | |
| protocol: "fidl.examples.routing.echo.Echo", | |
| from: "#echo_server", | |
| to: "#echo_client", | |
| }, | |
| ], | |
| } |