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 +}