mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
8c87bba755
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
15 lines
258 B
Go
15 lines
258 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
// Type definition for sorted measurements.
|
|
package sorted
|
|
|
|
// Measurement wraps a measurement custom index and value.
|
|
type Measurement struct {
|
|
Index string
|
|
Value []byte
|
|
}
|