• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2020 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.config.api;
8
9option go_package = "go.chromium.org/chromiumos/config/go/api";
10
11// Uniquely identifies a Chromium OS program, which defines a set of constraints
12// that govern all design projects developed under the respective program.
13message ProgramId {
14  string value = 1;
15}
16