Mashape/httpsnippet

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

Summary

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

export const r: Target = {
  info: {
    key: 'r',
    title: 'R',
    extname: '.r',
    default: 'httr',
  },
  clientsById: {
    httr,
  },
};