2026-07-12 16:21:38 +03:00
|
|
|
import { deleteManagedCredential, getManagedCredentialStatus, normalizers, readManagedCredential, writeManagedCredential } from './credentials/providers.js';
|
2026-07-12 14:48:50 +03:00
|
|
|
|
2026-07-12 16:21:38 +03:00
|
|
|
export const normalizeOpenCodeGoCredential = normalizers['opencode-go'];
|
2026-07-12 14:48:50 +03:00
|
|
|
|
2026-07-12 16:21:38 +03:00
|
|
|
export const readOpenCodeGoCredential = () => readManagedCredential('opencode-go');
|
2026-07-12 14:48:50 +03:00
|
|
|
|
2026-07-12 16:21:38 +03:00
|
|
|
export const getOpenCodeGoCredentialStatus = () => getManagedCredentialStatus('opencode-go');
|
2026-07-12 14:48:50 +03:00
|
|
|
|
2026-07-12 16:21:38 +03:00
|
|
|
export const writeOpenCodeGoCredential = (value) => writeManagedCredential('opencode-go', value);
|
2026-07-12 14:48:50 +03:00
|
|
|
|
2026-07-12 16:21:38 +03:00
|
|
|
export const deleteOpenCodeGoCredential = () => deleteManagedCredential('opencode-go');
|