blob: 5d871e32d8253eb189ae8432985606de6e368d2e [file] [log] [blame]
// Copyright 2022 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 infra.coverage; // `from PB.infra.coverage import CoverageCollectionType`
option go_package = "recipes";
enum CoverageCollectionType {
NONE = 0;
FULL = 1;
SELECTIVE = 2;
}