mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
12 lines
230 B
TypeScript
12 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 };
|