mirror of
https://github.com/openstf/stf
synced 2025-10-03 17:59:28 +02:00
Minimal start with a custom logger and device tracker.
This commit is contained in:
parent
971fcb8297
commit
f67eb6dd25
7 changed files with 126 additions and 0 deletions
15
lib/cli.js
Normal file
15
lib/cli.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
var program = require('commander')
|
||||
|
||||
var pkg = require('../package')
|
||||
|
||||
program
|
||||
.version(pkg.version)
|
||||
|
||||
program
|
||||
.command('provider')
|
||||
.description('run STF provider')
|
||||
.action(function() {
|
||||
require('./provider')
|
||||
})
|
||||
|
||||
program.parse(process.argv)
|
Loading…
Add table
Add a link
Reference in a new issue