ahmadnassri/httpsnippet

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

Summary

Maintainability
A
1 hr
Test Coverage
import { Target } from '../targets';
import { httpclient } from './httpclient/client';
import { restsharp } from './restsharp/client';

export const csharp: Target = {
  info: {
    key: 'csharp',
    title: 'C#',
    extname: '.cs',
    default: 'restsharp',
  },

  clientsById: {
    httpclient,
    restsharp,
  },
};