From 397a6977318138d6c23093ca8c21d7ec9e84f9b0 Mon Sep 17 00:00:00 2001 From: Timothy Messier Date: Fri, 24 Mar 2023 20:07:55 +0000 Subject: [PATCH] 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. --- internal/bsr/bsr.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 internal/bsr/bsr.go diff --git a/internal/bsr/bsr.go b/internal/bsr/bsr.go new file mode 100644 index 0000000000..41b20058d1 --- /dev/null +++ b/internal/bsr/bsr.go @@ -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 +}