(account: Account)
| 38 | * @param account The account to clear the cache for |
| 39 | */ |
| 40 | export function clearOctokitClientCacheForAccount(account: Account): void { |
| 41 | octokitClientCache.delete(getClientCacheKey(account, 'rest')); |
| 42 | octokitClientCache.delete(getClientCacheKey(account, 'graphql')); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Create an authenticated Octokit client instance with caching |
no test coverage detected