()
| 39 | } |
| 40 | |
| 41 | help() { |
| 42 | |
| 43 | return { |
| 44 | description: 'Creates a new (local) service', |
| 45 | args: [ |
| 46 | 'service' |
| 47 | ], |
| 48 | flags: { |
| 49 | n: 'No login - don\'t require an internet connection', |
| 50 | w: 'Write over - overwrite the current directory contents' |
| 51 | }, |
| 52 | vflags: { |
| 53 | 'no-login': 'No login - don\'t require an internet connection', |
| 54 | 'write-over': 'Write over - overwrite the current directory contents' |
| 55 | } |
| 56 | }; |
| 57 | |
| 58 | } |
| 59 | |
| 60 | run(params, callback) { |
| 61 |
nothing calls this directly
no outgoing calls
no test coverage detected