blob: 4ef6bd20441cf18085cecb6fdb64f9c84e3c231c [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.
{
children: [
{
name: "memfs",
url: "fuchsia-pkg://fuchsia.com/storage_integration_test#meta/memfs.cm",
startup: "eager",
},
{
name: "storage_user",
url: "fuchsia-pkg://fuchsia.com/storage_integration_test#meta/storage_user.cm",
startup: "eager",
},
],
capabilities: [
{
storage: "data",
from: "#memfs",
backing_dir: "memfs",
storage_id: "static_instance_id_or_moniker",
},
],
offer: [
{
storage: "data",
from: "self",
to: "#storage_user",
},
{
directory: "memfs",
from: "#memfs",
to: "#storage_user",
},
{
protocol: "fuchsia.logger.LogSink",
from: "parent",
to: [
"#memfs",
"#storage_user",
],
},
],
}