blob: 0f96fcbdda3d4466e7b58562d071fe203a0437b9 [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;
using fuchsia.mem;
/// An attachment and its plain ASCII string key.
/// Attachments are larger objects, e.g., log files. They may be binary or text data.
type Attachment = resource struct {
key string:128;
value fuchsia.mem.Buffer;
};