blob: 15fb866c7a3963986553da301d8f06b2a90eed07 [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_rust",
// format is [<owner_name>, <inital_balance_cents>]
args: [
"B",
"42",
],
},
capabilities: [
{ service: "fuchsia.examples.services.BankAccount" },
],
expose: [
{
protocol: "fuchsia.component.Binder",
from: "framework",
},
{
service: "fuchsia.examples.services.BankAccount",
from: "self",
},
],
}