mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-12 22:31:24 +00:00
16 lines
No EOL
482 B
Java
16 lines
No EOL
482 B
Java
package ee.carlrobert.codegpt.credentials;
|
|
|
|
import com.intellij.openapi.application.ApplicationManager;
|
|
import com.intellij.openapi.components.Service;
|
|
|
|
@Service
|
|
public final class AnthropicCredentialsManager extends SingleCredentialManager {
|
|
|
|
private AnthropicCredentialsManager() {
|
|
super("ANTHROPIC_API_KEY");
|
|
}
|
|
|
|
public static AnthropicCredentialsManager getInstance() {
|
|
return ApplicationManager.getApplication().getService(AnthropicCredentialsManager.class);
|
|
}
|
|
} |