blob: 3e4959d20bb90b9423363fa7ad55d2e1f354df39 [file]
// 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
protocol Echo {
EchoString(struct {
value string:<2048, optional>;
}) -> (struct {
response string:<2048, optional>;
});
};