blob: d9b5dfaaa9e5d954d1952b4c248c558a949bd250 [file] [log] [blame]
// Copyright 2024 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 test.display.namespace;
@discoverable
closed protocol Echo {
/// Returns `x`.
strict EchoInt32(struct {
x int32;
}) -> (struct {
result int32;
});
};
/// An example FIDL service providing a single protocol.
service SingleProtocolService {
echo client_end:Echo;
};