feat(bsr): Define stubs for meta structures

These are used to provide the metadata about a session or connection
when writing a BSR and will be written to the corresponding .meta files
within a BSR.
pull/3251/head
Timothy Messier 3 years ago
parent d15d2e3bc0
commit 397a697731
No known key found for this signature in database
GPG Key ID: EFD2F184F7600572

@ -0,0 +1,14 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package bsr
// SessionMeta contains metadata about a session in a BSR.
type SessionMeta struct {
Id string
}
// ConnectionMeta contains metadata about a connection in a BSR.
type ConnectionMeta struct {
Id string
}
Loading…
Cancel
Save