You are here

function workspace_drush_command in Workspace 8

Implements of hook_drush_command().

File

./workspace.drush.inc, line 10

Code

function workspace_drush_command() {
  $items = [];
  $items['workspace-uninstall'] = [
    'bootstrap' => DRUSH_BOOTSTRAP_NONE,
    'description' => 'Uninstall Workspace.',
    'aliases' => [
      'wun',
    ],
  ];
  return $items;
}