httpsnippet-lite
Version:
HTTP Request snippet generator for *most* languages
19 lines (18 loc) • 427 B
JavaScript
import { asynchttp } from './asynchttp/client.js';
import { nethttp } from './nethttp/client.js';
import { okhttp } from './okhttp/client.js';
import { unirest } from './unirest/client.js';
export const java = {
info: {
key: 'java',
title: 'Java',
extname: '.java',
default: 'unirest',
},
clientsById: {
asynchttp,
nethttp,
okhttp,
unirest,
},
};