blob: 4f4e1f5ab37d9d4105f46d604f5dc094116903f0 [file] [log] [blame]
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
syntax = "proto2";
package service2;
import "service3.proto";
message SearchRequest {
optional string query = 1;
}
message SearchResponse {
repeated service3.SearchResult results = 1;
}