blob: 835649116db3ba694c57e36720a66bd5224ca932 [file] [log] [blame]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Plain Old Go Object for root disk information
package metadata
import common_utils "go.chromium.org/chromiumos/test/provision/v2/common-utils"
// RootInfo stores Root information pertaining to a DUT
type RootInfo struct {
Root string
RootDisk string
RootPartNum string
PartitionInfo *common_utils.PartitionInfo
}