Method: Mu::Command::Cmd_muapi#cmd_status
- Defined in:
- lib/mu/command/cmd_muapi.rb
#cmd_status(argv) ⇒ Object
returns the status of a particular analysis
* argv = command-line argumentsm require a uuid (-u) argument, a test on the Mu
33 34 35 36 37 38 39 |
# File 'lib/mu/command/cmd_muapi.rb', line 33 def cmd_status argv setup argv uuid = @hash['uuid'] response = @api.status(uuid) msg response return response end |