blob: cfd33e00adcd3c8d23849b5144b93bc92274c15b [file] [log] [blame]
// Integration test component that runs a Trigger service. When triggered, the
// component echoes a string using the Echo service and prints it.
{
program: {
binary: "bin/trigger",
args: [ "Triggered" ],
},
capabilities: [
{ protocol: "fidl.test.components.Trigger" },
],
use: [
{ runner: "elf" },
{ protocol: "fidl.examples.routing.echo.Echo" },
],
expose: [
{
protocol: "fidl.test.components.Trigger",
from: "self",
},
],
}