13 lines
332 B
Go
13 lines
332 B
Go
package virtualgameservice
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SamuelTariku/FortuneBet-Backend/internal/domain"
|
|
)
|
|
|
|
type VirtualGameService interface {
|
|
GenerateGameLaunchURL(ctx context.Context, userID int64, gameID, currency, mode string) (string, error)
|
|
HandleCallback(ctx context.Context, callback *domain.PopOKCallback) error
|
|
}
|