From 49381e12c005eaaafbb09b03cea85cdb41d6c6e0 Mon Sep 17 00:00:00 2001 From: zhx Date: Wed, 10 Jun 2026 11:28:25 +0800 Subject: [PATCH] fix(game): complete scoped session repository interface --- services/game-service/internal/transport/grpc/server.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/game-service/internal/transport/grpc/server.go b/services/game-service/internal/transport/grpc/server.go index dc384b4a..42235d34 100644 --- a/services/game-service/internal/transport/grpc/server.go +++ b/services/game-service/internal/transport/grpc/server.go @@ -248,6 +248,9 @@ func (unavailableRepository) CreateLaunchSession(context.Context, gamedomain.Lau func (unavailableRepository) GetLaunchSessionByToken(context.Context, string, string) (gamedomain.LaunchSession, error) { return gamedomain.LaunchSession{}, xerr.New(xerr.Unavailable, "game repository is not configured") } +func (unavailableRepository) GetLaunchSessionByTokenScope(context.Context, string, string, string, string) (gamedomain.LaunchSession, error) { + return gamedomain.LaunchSession{}, xerr.New(xerr.Unavailable, "game repository is not configured") +} func (unavailableRepository) InsertCallbackLog(context.Context, gamedomain.CallbackLog) error { return xerr.New(xerr.Unavailable, "game repository is not configured") }