blob: 895bb5ad3745827a1a5a3ed53895ef74974782dd [file] [log] [blame]
// 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.
{
// [START includes]
include: [
"syslog/client.shard.cml",
"inspect/client.shard.cml",
],
// [END includes]
// Information about the program to run.
program: {
// Use the built-in ELF runner.
runner: "elf",
// The binary to run for this component.
binary: "bin/inspect_server_cpp",
},
// Capabilities provided by this component.
capabilities: [
{ protocol: "examples.routing.echo.Echo" },
],
expose: [
{
protocol: "examples.routing.echo.Echo",
from: "self",
},
],
}