blob: f453d641288ac45898d47fb0b9cd2b08026f0ccf [file] [log] [blame]
// Copyright 2019 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.
syntax = "proto3";
package vsock_test;
message EchoMessage {
string echo_message = 1;
}
service Echo {
rpc Echo(EchoMessage) returns (EchoMessage);
}