blob: 990c3101bd77117e885219015aef0c3d23aab521 [file] [log] [blame]
// Copyright 2019 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 fidl.service.test;
protocol Echo {
EchoString(string? value) -> (string? response);
};
/// A service that provides multiple Echo implementations.
service EchoService {
Echo foo;
Echo bar;
};