blob: 1dfd85f4a9b83ca103a2a2fea29db2551e8b24c8 [file] [log] [blame]
// Copyright 2021 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.examples.echo;
@discoverable
closed protocol Echo {
strict EchoString(struct {
value string:<2048, optional>;
}) -> (struct {
response string:<2048, optional>;
});
};