blob: f51e433d6faa72f172264dacc03d80ccc26c381d [file]
// Copyright 2020 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.
// Component manifest for the `echo_client` example program, which sends a message to the Echo
// service.
{
include: [ "syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/routing_failed_echo_client",
args: [
"Hippos",
"rule!",
],
},
use: [
{
protocol: [
"fidl.examples.routing.echo.Echo",
"fidl.examples.routing.echo.Echo2",
],
},
],
}