15 lines
322 B
Plaintext
15 lines
322 B
Plaintext
|
#!/usr/bin/env node
|
||
|
/*
|
||
|
* Copyright (c) 2014 Joyent Inc. All rights reserved.
|
||
|
*
|
||
|
* joyent - Joyent public cloud (https://my.joyentcloud.com/) CLI
|
||
|
*/
|
||
|
|
||
|
var p = console.log;
|
||
|
var cmdln = require('cmdln');
|
||
|
var CLI = require('../lib/cli');
|
||
|
|
||
|
if (require.main === module) {
|
||
|
cmdln.main(CLI, process.arg, {showCode: true});
|
||
|
}
|