14 lines
439 B
Go
14 lines
439 B
Go
package ports
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/Wei-Shaw/sub2api/internal/pkg/geminicli"
|
|
)
|
|
|
|
// GeminiOAuthClient performs Google OAuth token exchange/refresh for Gemini integration.
|
|
type GeminiOAuthClient interface {
|
|
ExchangeCode(ctx context.Context, code, codeVerifier, redirectURI, proxyURL string) (*geminicli.TokenResponse, error)
|
|
RefreshToken(ctx context.Context, refreshToken, proxyURL string) (*geminicli.TokenResponse, error)
|
|
}
|