chromium/components/named_mojo_ipc_server/testing.test-mojom

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module named_mojo_ipc_server.test.mojom;

// A simple mojo interface for testing.
interface Echo {
  // Simply returns |input|.
  EchoString(string input) => (string echoed_output);
};