๐Ÿ“ฆ Kong / httpsnippet

๐Ÿ“„ target.ts ยท 15 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15import { Target } from '../targets';
import { native } from './native/client';

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