UNPKG

256 BPlain TextView Raw
1#!/usr/bin/env node
2import './cli/commands/start/default';
3
4import { CLI, Shim } from 'clime';
5import * as Path from 'path';
6
7const cli = new CLI('lxdhub-api', Path.join(__dirname, 'cli/commands'));
8
9const shim = new Shim(cli);
10shim.execute(process.argv);