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, }, };
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { Target } from '../targets'; import { native } from './native/client'; export const go: Target = { info: { key: 'go', title: 'Go', extname: '.go', default: 'native', }, clientsById: { native, }, };