You are here

function drd_agent_drush_command in DRD Agent 6.3

Same name and namespace in other branches
  1. 7.3 drd_agent.drush.inc \drd_agent_drush_command()

Implements hook_drush_command().

Return value

array

File

./drd_agent.drush.inc, line 8

Code

function drd_agent_drush_command() {
  $items = array();
  $items['drd-agent-setup'] = array(
    'arguments' => array(
      'token' => 'Base64 and json encoded array of all variables required such that DRD can communicate with this domain in the future',
    ),
  );
  return $items;
}