one bin to rule them all
This commit is contained in:
parent
170518d55a
commit
4870cd1ee0
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env node
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
// node telebit daemon arg1 arg2
|
||||
if ('daemon' === process.argv[3]) {
|
||||
require('./telebitd.js');
|
||||
} else {
|
||||
require('./telebit-remote.js');
|
||||
}
|
||||
|
||||
}());
|
Loading…
Reference in New Issue