blob: 1e588bb0f3dd633ec80d3f38a2047a931d83501c [file] [log] [blame]
// Copyright 2020 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.
library fuchsia.test.echofactory;
using fidl.examples.routing.echo;
/// Test-only protocol used to demo attaching interposers to channels sent over
/// a "factory" channel.
@discoverable
protocol EchoFactory {
RequestEchoProtocol(resource struct {
server_end server_end:fidl.examples.routing.echo.Echo;
}) -> ();
};