mcp: storage scaffolding (#5581)

This commit is contained in:
Denis Mishin 2025-04-23 13:39:27 -04:00 committed by GitHub
parent f1a9401ddc
commit db221cb826
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 68 additions and 8 deletions

16
internal/mcp/storage.go Normal file
View file

@ -0,0 +1,16 @@
package mcp
import "github.com/pomerium/pomerium/pkg/grpc/databroker"
type Storage struct {
client databroker.DataBrokerServiceClient
}
// NewStorage creates a new Storage instance.
func NewStorage(
client databroker.DataBrokerServiceClient,
) *Storage {
return &Storage{
client: client,
}
}