session: rename DB to BoltStore

To better reflect the DB backing the CRUD and to prepare for a new
`SQLStore` type.
This commit is contained in:
Elle Mouton 2025-02-09 07:01:11 +02:00
parent 0652e7cdab
commit 88e4f2e5ed
No known key found for this signature in database
GPG key ID: D7D916376026F177
3 changed files with 18 additions and 18 deletions

View file

@ -58,7 +58,7 @@ type sessionRpcServer struct {
// sessionRpcServerConfig holds the values used to configure the
// sessionRpcServer.
type sessionRpcServerConfig struct {
db *session.DB
db *session.BoltStore
basicAuth string
grpcOptions []grpc.ServerOption
registerGrpcServers func(server *grpc.Server)