()
| 18 | } |
| 19 | |
| 20 | help() { |
| 21 | |
| 22 | return { |
| 23 | description: 'Initializes Autocode workspace', |
| 24 | args: [ |
| 25 | 'environment' |
| 26 | ], |
| 27 | flags: { |
| 28 | f: 'Force command to overwrite existing workspace', |
| 29 | n: 'No login - don\'t require an internet connection' |
| 30 | }, |
| 31 | vflags: { |
| 32 | 'force': 'Force command to overwrite existing workspace', |
| 33 | 'no-login': 'No login - don\'t require an internet connection' |
| 34 | } |
| 35 | }; |
| 36 | |
| 37 | } |
| 38 | |
| 39 | async run (params, callback) { |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected