mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
80e5161a20
* fix non-context-aware imports * extract _actuallySend to file * extract CLI unit test function from renderer * expose curl functions to the ipc renderer * use curl through ipcRenderer * feedback first pass make like grpc * feedback second pass remove duplicate * fix lint
10 lines
314 B
TypeScript
10 lines
314 B
TypeScript
import { stats } from '../models';
|
|
import { sendAndTransform } from '../network/network';
|
|
|
|
export function getSendRequestCallback(environmentId?: string) {
|
|
return async function sendRequest(requestId: string) {
|
|
stats.incrementExecutedRequests();
|
|
return sendAndTransform(requestId, environmentId);
|
|
};
|
|
}
|