aboutsummaryrefslogtreecommitdiffhomepage
path: root/surfer.js
blob: 703fc590a016665ef24a7a85157bbbc5d7bc7e7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env node

'use strict';

var program = require('commander'),
    actions = require('./src/actions');

// Allow self signed certs!
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';

program.version('0.1.0');

program.command('put')
    .description('Put a file')
    .action(actions.put);

program.command('get')
    .description('Get a file or directory')
    .action(actions.get);

program.command('del')
    .description('Delete a file')
    .action(actions.del);

program.parse(process.argv);