Add measurement reader (#1381)

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
Daniel Weiße 2023-03-09 11:22:58 +01:00 committed by GitHub
parent 5bad5f768b
commit 8c87bba755
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 216 additions and 9 deletions

View file

@ -0,0 +1,14 @@
/*
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
}