blob: 7a3b9575ed63fbede0b33cdc5da3191368fecee2 [file] [log] [blame]
// Copyright 2021 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: [ "//sdk/lib/diagnostics/syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/unreliable_echo_client",
},
collections: [
{
name: "dynamic_children",
durability: "transient",
},
],
use: [
{ protocol: "fidl.examples.routing.echo.Echo" },
],
offer: [
{
protocol: "fidl.examples.routing.echo.Echo",
from: "parent",
to: "#dynamic_children",
},
{
protocol: "fuchsia.logger.LogSink",
from: "parent",
to: "#dynamic_children",
},
],
expose: [
{
protocol: "fuchsia.sys2.Realm",
from: "framework",
},
],
}