This commit is contained in:
cau1k 2025-12-15 00:34:38 -05:00
parent 1871962e2e
commit fb648bb158
No known key found for this signature in database

View file

@ -226,10 +226,3 @@ export async function loginGitHubCopilot(options: {
);
return await refreshGitHubCopilotToken(githubAccessToken, enterpriseDomain ?? undefined);
}
export async function exchangeGitHubTokenForCopilotCredentials(options: {
githubToken: string;
enterpriseDomain?: string;
}): Promise<OAuthCredentials> {
return refreshGitHubCopilotToken(options.githubToken, options.enterpriseDomain);
}