MCPcopy Create free account
hub / github.com/Microck/opencode-studio / listAntigravityAccounts

Function listAntigravityAccounts

server/index.js:3375–3382  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3373}
3374
3375function listAntigravityAccounts() {
3376 const data = loadAntigravityAccounts();
3377 if (!data?.accounts || !Array.isArray(data.accounts)) return [];
3378 return data.accounts.map(a => ({
3379 email: a.email || null,
3380 refreshToken: a.refreshToken || null
3381 }));
3382}
3383
3384function decodeJWT(token) {
3385 try {

Callers 1

syncAntigravityPoolFunction · 0.85

Calls 1

loadAntigravityAccountsFunction · 0.85

Tested by

no test coverage detected