blob: 9e40cb022d80779cd37c123fb4506ffb25ec9aae [file]
// 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", "a" ],
},
"use": [
{ "runner": "elf" },
{
"protocol": "/svc/fidl.examples.routing.echo.Echo",
},
],
"expose": [
{
"protocol": "/svc/fidl.test.components.Trigger",
"from": "self",
},
],
}