blob: c7b627f1d131573cf542816f7ef6ddb67c2ab8be [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.examples.inspect;
// [START reverser_fidl]
// Implementation of a string reverser.
[Discoverable]
protocol Reverser {
// Returns the input string reversed character-by-character.
Reverse(string:1024 input) -> (string:1024 response);
};
// [END reverser_fidl]