mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-29 13:45:35 +00:00
6 lines
192 B
TypeScript
6 lines
192 B
TypeScript
import { Agent } from 'http'
|
|
import { Agent as HttpsAgent } from 'https'
|
|
|
|
export const httpAgent = new Agent({ keepAlive: true })
|
|
export const httpsAgent = new HttpsAgent({ keepAlive: true })
|