blob: b8ff8a8b8a0e518ab4178d02544a7e5628af460f [file] [log] [blame]
// Copyright 2020 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 prototype;
option go_package = "go.chromium.org/chromiumos/infra/proto/go/prototype";
message Channel {
enum Type {
TYPE_UNSPECIFIED = 0;
CANARY = 1;
DEV = 2;
BETA = 3;
STABLE = 4;
}
Type type = 1;
}