()
| 23 | } |
| 24 | |
| 25 | help() { |
| 26 | |
| 27 | return { |
| 28 | description: 'Retrieves logs for a given service', |
| 29 | args: ['service'], |
| 30 | flags: { |
| 31 | t: 'The log type you want to retrieve. Allowed values are "stdout" and "stderr".', |
| 32 | l: 'The number of log lines you want to retrieve' |
| 33 | }, |
| 34 | vflags: { |
| 35 | type: 'The log type you want to retrieve. Allowed values are "stdout" and "stderr".', |
| 36 | lines: 'The number of log lines you want to retrieve' |
| 37 | } |
| 38 | }; |
| 39 | |
| 40 | } |
| 41 | |
| 42 | run(params, callback) { |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected