package repository import ( "github.com/google/wire" ) // ProviderSet is the Wire provider set for all repositories var ProviderSet = wire.NewSet( NewUserRepository, NewApiKeyRepository, NewGroupRepository, NewAccountRepository, NewProxyRepository, NewRedeemCodeRepository, NewUsageLogRepository, NewSettingRepository, NewUserSubscriptionRepository, // Cache implementations NewGatewayCache, NewBillingCache, NewApiKeyCache, NewConcurrencyCache, NewEmailCache, NewIdentityCache, NewRedeemCache, NewUpdateCache, NewGeminiTokenCache, // HTTP service ports (DI Strategy A: return interface directly) NewTurnstileVerifier, NewPricingRemoteClient, NewGitHubReleaseClient, NewProxyExitInfoProber, NewClaudeUsageFetcher, NewClaudeOAuthClient, NewHTTPUpstream, NewOpenAIOAuthClient, NewGeminiOAuthClient, NewGeminiCliCodeAssistClient, )