mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
import Agent, { HttpsAgent } from 'agentkeepalive';
|
|
import type { Agents } from 'got';
|
|
|
|
const http = new Agent();
|
|
const https = new HttpsAgent();
|
|
|
|
const keepAliveAgents: Agents = {
|
|
http,
|
|
https,
|
|
};
|
|
|
|
export { keepAliveAgents };
|