| // 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. |
| { |
| // TODO(https://fxbug.dev/42180074) remove include once no longer required |
| include: [ "syslog/client.shard.cml" ], |
| program: { |
| runner: "elf", |
| binary: "bin/foo_noop", |
| }, |
| expose: [ |
| { |
| protocol: "void-protocol", |
| from: "void", |
| availability: "optional", |
| }, |
| ], |
| config: { |
| my_uint8: { |
| type: "uint8", |
| mutability: [ "parent" ], |
| }, |
| my_string: { |
| type: "string", |
| max_size: 100, |
| mutability: [ "parent" ], |
| }, |
| }, |
| } |