blob: 93d8c811a45c5b401fafbb033b70bb5e706a00a3 [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.
resource struct Attachment {
string:128 key;
fuchsia.mem.Buffer value;
};