Mashape/httpsnippet

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

Summary

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

export const crystal: Target = {
  info: {
    key: 'crystal',
    title: 'Crystal',
    extname: '.cr',
    default: 'native',
  },
  clientsById: {
    native,
  },
};