blob: c3aa51ae02e2f474f264fc70b12f3e34c0790302 [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: [ "syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/provider_bin",
// format is [<owner_name>, <inital_balance_cents>]
args: [
"A",
"23",
],
},
capabilities: [
{ service: "fuchsia.examples.services.BankAccount" },
],
expose: [
{
protocol: "fuchsia.component.Binder",
from: "framework",
},
{
service: "fuchsia.examples.services.BankAccount",
from: "self",
},
],
}