Skip to content

Commit d20270c

Browse files
author
Cam Pedersen
committed
[minor] stub out module functions
1 parent 65a00b8 commit d20270c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

scp.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/*
2+
* node-scp
3+
4+
*/
5+
var exec = require('child_process').exec;
6+
7+
var scp = {};
8+
9+
scp.send = function (options, cb) {
10+
11+
}
12+
13+
scp.get = function (options, cb) {
14+
15+
}
16+
17+
module.exports = scp;

0 commit comments

Comments
 (0)