()
| 42 | } |
| 43 | |
| 44 | help() { |
| 45 | |
| 46 | return { |
| 47 | description: 'Creates a new endpoint for a service', |
| 48 | args: [ |
| 49 | 'name', |
| 50 | 'description', |
| 51 | 'param_1', |
| 52 | 'param_2', |
| 53 | '...', |
| 54 | 'param_n' |
| 55 | ], |
| 56 | flags: { |
| 57 | 'n': 'New directory: Create as a __main__.js file, with the name representing the directory' |
| 58 | }, |
| 59 | vflags: { |
| 60 | 'new': 'New directory: Create as a __main__.js file, with the name representing the directory' |
| 61 | } |
| 62 | }; |
| 63 | |
| 64 | } |
| 65 | |
| 66 | async run(params, callback) { |
| 67 |
nothing calls this directly
no outgoing calls
no test coverage detected