mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
12 lines
144 B
JavaScript
Executable file
12 lines
144 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
/* cloudcmd binary
|
|
* usage: node cloudcmd
|
|
*/
|
|
(function(){
|
|
'use strict';
|
|
|
|
require('../cloudcmd');
|
|
|
|
})();
|
|
|