1// Copyright 2021 The ChromiumOS Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5syntax = "proto3"; 6 7package chromiumos.test.api; 8 9option go_package = "go.chromium.org/chromiumos/config/go/test/api"; 10 11import "chromiumos/test/api/cros_test_finder_cli.proto"; 12 13// TestFinderService defines interactions with the test finder service. 14service TestFinderService { 15 // FindTests finds test associated with the provided input. 16 rpc FindTests(CrosTestFinderRequest) 17 returns (CrosTestFinderResponse); 18}