// Copyright 2021 The Chromium OS 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 tast.core; | |
import "google/protobuf/empty.proto"; | |
option go_package = "chromiumos/tast/internal/protocol"; | |
// PingCore is a fake core service for unit tests. | |
service PingCore { | |
rpc Ping(google.protobuf.Empty) returns (google.protobuf.Empty) {} | |
} |