Mashape/httpsnippet

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

Summary

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

export const go: Target = {
  info: {
    key: 'go',
    title: 'Go',
    extname: '.go',
    default: 'native',
  },
  clientsById: {
    native,
  },
};