ahmadnassri/httpsnippet

View on GitHub
src/targets/clojure/target.ts

Summary

Maintainability
A
55 mins
Test Coverage
import { Target } from '../targets';
import { clj_http } from './clj_http/client';

export const clojure: Target = {
  info: {
    key: 'clojure',
    title: 'Clojure',
    extname: '.clj',
    default: 'clj_http',
  },
  clientsById: {
    clj_http,
  },
};