blob: e288805f2e6d3ca4feae0525b4a2d2d7e9c89724 [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.
{
include: [ "syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/inspect_cpp_codelab_client",
args: [
"Hello",
"World",
],
},
children: [
{
name: "fizzbuzz",
url: "fuchsia-pkg://fuchsia.com/inspect_cpp_codelab#meta/fizzbuzz.cm",
},
],
use: [
{
protocol: "fuchsia.component.Realm",
from: "framework",
},
],
offer: [
{
protocol: "fuchsia.examples.inspect.FizzBuzz",
from: "#fizzbuzz",
to: "#reverser",
},
{
protocol: "fuchsia.logger.LogSink",
from: "parent",
to: [
"#fizzbuzz",
"#reverser",
],
},
],
}