ahmadnassri/httpsnippet

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

Summary

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

export const ocaml: Target = {
  info: {
    key: 'ocaml',
    title: 'OCaml',
    extname: '.ml',
    default: 'cohttp',
  },
  clientsById: {
    cohttp,
  },
};