blob: 06804cb77beeeadcb6c089bc078887e13e92595d [file] [log] [blame]
// Copyright 2019 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.
library fuchsia.feedback;
/// An annotation and its plain ASCII string key.
/// Annotations are short strings, e.g., the board name or the build version.
type Annotation = struct {
key string:128;
value string:1024;
};